home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2002 May / SGI IRIX 6.5 Applications 2002 May.iso / relnotes / nedit / nedit.doc < prev    next >
Text File  |  2002-04-12  |  185KB  |  3,900 lines

  1.                      NEdit Version 5.2, August, 2001
  2.  
  3. $Id: nedit.doc,v 1.1 2002/02/19 23:06:33 rhess Exp $
  4.  
  5. NEdit is a standard GUI (Graphical User Interface) style text editor for
  6. programs and plain-text files.  Users of Macintosh and MS Windows based text
  7. editors should find NEdit a familiar and comfortable environment.  NEdit
  8. provides all of the standard menu, dialog, editing, and mouse support, as well
  9. as all of the standard shortcuts to which the users of modern GUI based
  10. environments are accustomed.  For users of older style Unix editors, welcome to
  11. the world of mouse-based editing!
  12.  
  13. NEdit is freely distributed under the terms of the Gnu General Public License.
  14.  
  15.  
  16. INSTALLING NEDIT
  17.  
  18. NEdit is a single stand-alone executable file which can be installed by simply
  19. copying the appropriate executable "nedit" for your system.  Both sources and
  20. executables are available from http://nedit.org.  The optional "nc" (NEdit
  21. Client) program is also available for users who want to run NEdit in
  22. client/server mode.
  23.  
  24.  
  25. GETTING STARTED
  26.  
  27. Help sections of interest to new users are listed under the "Basic Operation"
  28. heading in the top-level Help menu:
  29.  
  30.     Selecting Text
  31.     Finding and Replacing Text
  32.     Cut and Paste
  33.     Using the Mouse
  34.     Keyboard Shortcuts
  35.     Shifting and Filling
  36.  
  37. Programmers should also read the introductory section under the "Features for
  38. Programming" section:
  39.  
  40.     Programming with NEdit
  41.  
  42. If you get into trouble, the Undo command in the Edit menu can reverse any
  43. modifications that you make.  NEdit does not change the file you are editing
  44. until you tell it to Save.
  45.  
  46. Start NEdit by typing nedit.  You can specify a file or several files to edit
  47. on the command line, but you can also open them from inside of NEdit.  If you
  48. don't specify a file name to edit, NEdit will open a window titled "Untitled".
  49. You can create a new file by typing into this window and choosing Save or
  50. Save As... from the File menu.  There is no "main window" in NEdit, all
  51. editor windows are equivalent, and NEdit remains running as long as at least
  52. one window is open.
  53.  
  54. Editing an Existing File
  55.  
  56. To open an existing file, choose Open... from the file menu. Select the file
  57. that you want to open in the pop-up dialog that appears and click on OK.  You
  58. may open any number of files at the same time.  Each file will appear in its
  59. own editor window.  Using Open... rather than re-typing the NEdit command and
  60. running additional copies of NEdit, will give you quick access to all of the
  61. files you have open via the Windows menu, and ensure that you don't
  62. accidentally open the same file twice.  NEdit has no "main" window.  It remains
  63. running as long as at least one editor window is open.
  64.  
  65. Creating a New File
  66.  
  67. If you already have an empty (Untitled) window displayed, just begin typing in
  68. the window.  To create a new Untitled window, choose New from the File menu.
  69. To give the file a name and save its contents to the disk, choose Save or Save
  70. As... from the File menu.
  71.  
  72. Backup Files
  73.  
  74. NEdit maintains periodic backups of the file you are editing so that you can
  75. recover the file in the event of a problem such as a system crash, network
  76. failure, or X server crash.  These files are saved under the name ~filename (on
  77. Unix) or _filename (on VMS), where filename is the name of the file you were
  78. editing.  If an NEdit process is killed, some of these backup files may remain
  79. in your directory.  (To remove one of these files on Unix, you may have to
  80. prefix the ~ (tilde) character with a (backslash) to prevent the shell from
  81. interpreting it as a special character.)
  82.  
  83. Shortcuts
  84.  
  85. As you become more familiar with NEdit, substitute the control and function
  86. keys shown on the right side of the menus for pulling down menus with the
  87. mouse.
  88.  
  89. Dialogs are also streamlined so you can enter information quickly and without
  90. using the mouse.  To move the keyboard focus around a dialog, use the tab and
  91. arrow keys.  One of the buttons in a dialog is usually drawn with a thick,
  92. indented, outline.  This button can be activated by pressing Return or Enter.
  93. The Cancel or Dismiss button can be activated by pressing escape.  For example,
  94. to replace the string "thing" with "things" type:
  95.  
  96.     <ctrl-r>thing<tab>things<return>
  97.  
  98. To open a file named "whole_earth.c", type:
  99.  
  100.     <ctrl-o>who<return>
  101.  
  102. (how much of the filename you need to type depends on the other files in the
  103. directory).  See the section called Keyboard Shortcuts for more details.
  104.  
  105.  
  106. SELECTING TEXT
  107.  
  108. NEdit has two general types of selections, primary (highlighted text), and
  109. secondary (underlined text). Selections can cover either a simple range of text
  110. between two points in the file, or they can cover a rectangular area of the
  111. file.  Rectangular selections are only useful with non-proportional (fixed
  112. spacing) fonts.
  113.  
  114. To select text for copying, deleting, or replacing, press the left mouse button
  115. with the pointer at one end of the text you want to select, and drag it to the
  116. other end.  The text will become highlighted.  To select a whole word, double
  117. click (click twice quickly in succession).  Double clicking and then dragging
  118. the mouse will select a number of words.  Similarly, you can select a whole line
  119. or a number of lines by triple clicking or triple clicking and dragging.
  120. Quadruple clicking selects the whole file.  After releasing the mouse button,
  121. you can still adjust a selection by holding down the shift key and dragging on
  122. either end of the selection.  To delete the selected text, press delete or
  123. backspace.  To replace it, begin typing.
  124.  
  125. To select a rectangle or column of text, hold the Ctrl key while dragging the
  126. mouse.  Rectangular selections can be used in any context that normal selections
  127. can be used, including cutting and pasting, filling, shifting, dragging, and
  128. searching.  Operations on rectangular selections automatically fill in tabs and
  129. spaces to maintain alignment of text within and to the right of the selection.
  130. Note that the interpretation of rectangular selections by Fill Paragraph is
  131. slightly different from that of other commands, the section titled "Shifting and
  132. Filling" has details.
  133.  
  134. The middle mouse button can be used to make an additional selection (called the
  135. secondary selection).  As soon as the button is released, the contents of this
  136. selection will be copied to the insert position of the window where the mouse
  137. was last clicked (the destination window).  This position is marked by a caret
  138. shaped cursor when the mouse is outside of the destination window.  If there is
  139. a (primary) selection, adjacent to the cursor in the window, the new text will
  140. replace the selected text.  Holding the shift key while making the secondary
  141. selection will move the text, deleting it at the site of the secondary
  142. selection, rather than copying it.
  143.  
  144. Selected text can also be dragged to a new location in the file using the middle
  145. mouse button.  Holding the shift key while dragging the text will copy the
  146. selected text, leaving the original text in place.  Holding the control key will
  147. drag the text in overlay mode.
  148.  
  149. Normally, dragging moves text by removing it from the selected position at the
  150. start of the drag, and inserting it at a new position relative to to the mouse.
  151. Dragging a block of text over existing characters, displaces the characters to
  152. the end of the selection.  In overlay mode, characters which are occluded by
  153. blocks of text being dragged are simply removed.  When dragging non-rectangular
  154. selections, overlay mode also converts the selection to rectangular form,
  155. allowing it to be dragged outside of the bounds of the existing text.
  156.  
  157. The section "Using the Mouse" summarizes the mouse commands for making primary
  158. and secondary selections.  Primary selections can also be made via keyboard
  159. commands, see "Keyboard Shortcuts".
  160.  
  161.  
  162. CUTTING and PASTING
  163.  
  164. The easiest way to copy and move text around in your file or between windows, is
  165. to use the clipboard, an imaginary area that temporarily stores text and data.
  166. The Cut command removes the selected text (see SELECTING TEXT) from your file
  167. and places it in the clipboard.  Once text is in the clipboard, the Paste
  168. command will copy it to the insert position in the current window.  For example,
  169. to move some text from one place to another, select it by dragging the mouse
  170. over it, choose Cut to remove it, click the pointer to move the insert point
  171. where you want the text inserted, then choose Paste to insert it.  Copy copies
  172. text to the clipboard without deleting it from your file.  You can also use the
  173. clipboard to transfer text to and from other Motif programs and X programs which
  174. make proper use of the clipboard.
  175.  
  176. There are many other methods for copying and moving text within NEdit windows
  177. and between NEdit and other programs.  The most common such method is clicking
  178. the middle mouse button to copy the primary selection (to the clicked
  179. position).  Copying the selection by clicking the middle mouse button in many
  180. cases is the only way to transfer data to and from many X programs.  Holding
  181. the Shift key while clicking the middle mouse button moves the text, deleting
  182. it from its original position, rather than copying it.  Other methods for
  183. transferring text include secondary selections, primary selection dragging,
  184. keyboard-based selection copying, and drag and drop.  These are described in
  185. detail in the sections: Selecting Text, Using the Mouse, and Keyboard
  186. Shortcuts.
  187.  
  188.  
  189. FINDING AND REPLACING TEXT
  190.  
  191. The Search menu contains a number of commands for finding and replacing text.
  192.  
  193. The Find... and Replace... commands present dialogs for entering text for
  194. searching and replacing.  These dialogs also allow you to choose whether you
  195. want the search to be sensitive to upper and lower case, or whether to use the
  196. standard Unix pattern matching characters (regular expressions).  Searches
  197. begin at the current text insertion position.
  198.  
  199. Find Again and Replace Again repeat the last find or replace command without
  200. prompting for search strings.  To selectively replace text, use the two
  201. commands in combination: Find Again, then Replace Again if the highlighted
  202. string should be replaced, or Find Again again to go to the next string.
  203.  
  204. Find Selection searches for the text contained in the current primary
  205. selection (see SELECTING TEXT).  The selected text does not have to be in the
  206. current editor window, it may even be in another program.  For example, if the
  207. word dog appears somewhere in a window on your screen, and you want to find it
  208. in the file you are editing, select the word dog by dragging the mouse across
  209. it, switch to your NEdit window and choose Find Selection from the Search
  210. menu.
  211.  
  212. Find Incremental is yet another variation on searching, where every character
  213. typed triggers a new search.  Incremental searching is generally the quickest
  214. way to find something in a file, because it gives you the immediate feedback of
  215. seeing how your search is progressing, so you never need to type more than the
  216. minimally sufficient search string to reach your target.
  217.  
  218. Searching Backwards
  219.  
  220. Holding down the shift key while choosing any of the search or replace
  221. commands from the menu (or using the keyboard shortcut), will search in the
  222. reverse direction.  Users who have set the search direction using the buttons
  223. in the search dialog, may find it a bit confusing that Find Again and Replace
  224. Again don't continue in the same direction as the original search (for
  225. experienced users, consistency of the direction implied by the shift key is
  226. more important).
  227.  
  228. Selective Replacement
  229.  
  230. To replace only some occurrences of a string within a file, choose Replace...
  231. from the Search menu, enter the string to search for and the string to
  232. substitute, and finish by pressing the Find button.  When the first occurrence
  233. is highlighted, use either Replace Again (^T) to replace it, or Find Again
  234. (^G) to move to the next occurrence without replacing it, and continue in such
  235. a manner through all occurrences of interest.
  236.  
  237. To replace all occurrences of a string within some range of text, select the
  238. range (see SELECTING TEXT), choose Replace... from the Search menu, type the
  239. string to search for and the string to substitute, and press the "R. in
  240. Selection" button in the dialog.  Note that selecting text in the Replace...
  241. dialog will unselect the text in the window.
  242.  
  243.  
  244. USING THE MOUSE
  245.  
  246. NEdit is one of the most mouse interactive text editors around, but you don't
  247. need to know all of the details below to be productive.  You can get by with
  248. just the left mouse button, clicking to move the cursor, and dragging to make a
  249. selection.
  250.  
  251. This section will make more sense if you also read the sections, SELECTING,
  252. and CUTTING, and PASTING, which explain the terminology of selections, i.e.
  253. what is meant by primary, secondary, rectangular, etc.
  254.  
  255. The general meaning of mouse buttons and modifier keys is as follows:
  256.  
  257.     Buttons
  258.  
  259.         Button 1 (left)     Cursor position and primary selection
  260.  
  261.         Button 2 (middle)   Secondary selections, and dragging and
  262.                             copying primary selection
  263.  
  264.         Button 3 (right)    Quick-access programmable menu and pan scrolling
  265.  
  266.     Modifier keys
  267.  
  268.         Shift   On primary selections, (left mouse button):
  269.                     Extends selection to the mouse pointer
  270.                 On secondary and copy operations, (middle):
  271.                     Toggles between move and copy
  272.  
  273.         Ctrl    Makes selection rectangular or insertion
  274.                 columnar
  275.  
  276.         Alt*    (on release) Exchange primary and secondary
  277.                 selections.
  278.  
  279.  
  280. Left Mouse Button
  281.  
  282.     The left mouse button is used to position the cursor and to make primary
  283.     selections.
  284.  
  285.     Click               Moves the cursor
  286.  
  287.     Double Click        Selects a whole word
  288.  
  289.     Triple Click        Selects a whole line
  290.  
  291.     Quadruple Click     Selects the whole file
  292.  
  293.     Shift Click         Adjusts (extends or shrinks) the selection, or if there
  294.                         is no existing selection, begins a new selection between
  295.                         the cursor and the mouse.
  296.  
  297.     Ctrl+Shift+Click    Adjusts (extends or shrinks) the selection
  298.                         rectangularly.
  299.  
  300.     Drag                Selects text between where the mouse was pressed and
  301.                         where it was released.
  302.  
  303.     Ctrl+Drag           Selects rectangle between where the mouse was pressed
  304.                         and where it was released.
  305.  
  306.  
  307. Right Mouse Button
  308.  
  309.     The right mouse button posts a programmable menu for frequently used
  310.     commands.
  311.  
  312.     Click/Drag  Pops up the background menu (programmed from Preferences ->
  313.                 Default Settings -> Customize Menus -> Window Background).
  314.  
  315.     Ctrl+Drag   Pan scrolling.  Scrolls the window both vertically and
  316.                 horizontally, as if you had grabbed it with your mouse.
  317.  
  318.  
  319. Middle Mouse Button
  320.  
  321.     The middle mouse button is for making secondary selections, and copying and
  322.     dragging the primary selection.
  323.  
  324.     Click       Copies the primary selection to the clicked position.
  325.  
  326.     Shift+Click Moves the primary selection to the clicked position, deleting it
  327.                 from its original position.
  328.  
  329.     Drag        1) Outside of the primary selection:
  330.                     Begins a secondary selection.
  331.                 2) Inside of the primary selection:
  332.                     Moves the entire selection by dragging.
  333.  
  334.     Ctrl+Drag   1) Outside of the primary selection:
  335.                     Begins a rectangular secondary selection.
  336.                 2) Inside of the primary selection:
  337.                     Drags the selection in overlay mode (see below).
  338.  
  339. When the mouse button is released after creating a secondary selection:
  340.  
  341.     No Modifiers    If there is a primary selection, replaces it with the
  342.                     secondary selection.  Otherwise, inserts the secondary
  343.                     selection at the cursor position.
  344.  
  345.     Shift           Move the secondary selection, deleting it from its original
  346.                     position.  If there is a primary selection, the move will
  347.                     replace the primary selection with the secondary selection.
  348.                     Otherwise, moves the secondary selection to to the cursor
  349.                     position.
  350.  
  351.     Alt*            Exchange the primary and secondary selections.
  352.  
  353.  
  354. While moving the primary selection by dragging with the middle mouse button:
  355.  
  356.     Shift   Leaves a copy of the original selection in place rather than 
  357.             removing it or blanking the area.
  358.  
  359.     Ctrl    Changes from insert mode to overlay mode (see below).
  360.  
  361.     Escape  Cancels drag in progress.
  362.  
  363. Overlay Mode: Normally, dragging moves text by removing it from the selected
  364. position at the start of the drag, and inserting it at a new position relative
  365. to to the mouse.  When you drag a block of text over existing characters, the
  366. existing characters are displaced to the end of the selection.  In overlay
  367. mode, characters which are occluded by blocks of text being dragged are simply
  368. removed.  When dragging non-rectangular selections, overlay mode also converts
  369. the selection to rectangular form, allowing it to be dragged outside of the
  370. bounds of the existing text.
  371.  
  372. Mouse buttons 4 and 5 are usually represented by a mouse wheel nowadays. They
  373. are used to scroll up/down in the text window.
  374.  
  375. * The Alt key may be labeled Meta or Compose-Character on some keyboards.  Some
  376. window managers, including default configurations of mwm, bind combinations of
  377. the Alt key and mouse buttons to window manager operations.  In NEdit, Alt is
  378. only used on button release, so regardless of the window manager bindings for
  379. Alt-modified mouse buttons, you can still do the corresponding NEdit operation
  380. by using the Alt key AFTER the initial mouse press, so that Alt is held while
  381. you release the mouse button.  If you find this difficult or annoying, you can
  382. re-configure most window managers to skip this binding, or you can re-configure
  383. NEdit to use a different key combination.
  384.  
  385.  
  386. KEYBOARD SHORTCUTS
  387.  
  388. Most of the keyboard shortcuts in NEdit are shown on the right hand sides of
  389. the pull-down menus.  However, there are more which are not as obvious.  These
  390. include; dialog button shortcuts; menu and dialog mnemonics; labeled keyboard
  391. keys, such as the arrows, page-up, page-down, and home; and optional Shift
  392. modifiers on accelerator keys, like [Shift]Ctrl+F.
  393.  
  394. Menu Accelerators
  395.  
  396. Pressing the key combinations shown on the right of the menu items is a
  397. shortcut for selecting the menu item with the mouse.  Some items have the shift
  398. key enclosed in brackets, such as [Shift]Ctrl+F.  This indicates that the shift
  399. key is optional.  In search commands, including the shift key reverses the
  400. direction of the search.  In Shift commands, it makes the command shift the
  401. selected text by a whole tab stop rather than by single characters.
  402.  
  403. Menu Mnemonics
  404.  
  405. Pressing the Alt key in combination with one of the underlined characters in
  406. the menu bar pulls down that menu.  Once the menu is pulled down, typing the
  407. underlined characters in a menu item (without the Alt key) activates that
  408. item.  With a menu pulled down, you can also use the arrow keys to select menu
  409. items, and the space or enter keys to activate them.
  410.  
  411. Keyboard Shortcuts within Dialogs
  412.  
  413. One button in a dialog is usually marked with a thick indented outline.
  414. Pressing the Return or Enter key activates this button.
  415.  
  416. All dialogs have either a Cancel or Dismiss button.  This button can be
  417. activated by pressing the Escape (or Esc) key.
  418.  
  419. Pressing the tab key moves the keyboard focus to the next item in a dialog.
  420. Within an associated group of buttons, the arrow keys move the focus among the
  421. buttons.  Shift+Tab moves backward through the items.
  422.  
  423. Most items in dialogs have an underline under one character in their name.
  424. Pressing the Alt key along with this character, activates a button as if you
  425. had pressed it with the mouse, or moves the keyboard focus to the associated
  426. text field or list.
  427.  
  428. You can select items from a list by using the arrow keys to move the selection
  429. and space to select.
  430.  
  431. In file selection dialogs, you can type the beginning characters of the file
  432. name or directory in the list to select files
  433.  
  434. Labeled Function Keys
  435.  
  436. The labeled function keys on standard workstation and PC keyboards, like the
  437. arrows, and page-up and page-down, are active in NEdit, though not shown in the
  438. pull-down menus.
  439.  
  440. Holding down the control key while pressing a named key extends the scope of
  441. the action that it performs.  For example, Home normally moves the insert
  442. cursor the beginning of a line.  Ctrl+Home moves it to the beginning of the
  443. file. Backspace deletes one character, Ctrl+Backspace deletes one word.
  444.  
  445. Holding down the shift key while pressing a named key begins or extends a
  446. selection.  Combining the shift and control keys combines their actions.  For
  447. example, to select a word without using the mouse, position the cursor at the
  448. beginning of the word and press Ctrl+Shift+RightArrow.  The Alt key modifies
  449. selection commands to make the selection rectangular.
  450.  
  451. Under X and Motif, there are several levels of translation between keyboard
  452. keys and the actions they perform in a program.  The "KEY BINDING", and "X
  453. RESOURCES" sections below have more information on this subject.  Because of
  454. all of this configurability, and since keyboards and standards for the meaning
  455. of some keys vary from machine to machine, the mappings may be changed from the
  456. defaults listed below.
  457.  
  458. Modifier Keys (in general)
  459.  
  460.     Ctrl    Extends the scope of the action that the key would otherwise
  461.             perform.  For example, Home normally moves the insert cursor the
  462.             beginning of a line. Ctrl+Home moves it to the beginning of the
  463.             file.  Backspace deletes one character, Ctrl+ Backspace deletes one
  464.             word.
  465.  
  466.     Shift   Extends the selection to the cursor position. If there's no
  467.             selection, begins one between the old and new cursor positions.
  468.  
  469.     Alt     When modifying a selection, makes the selection rectangular.
  470.  
  471. (For the effects of modifier keys on mouse button presses, see the section
  472. titled "Using the Mouse")
  473.  
  474. All Keyboards
  475.  
  476.     Escape          Cancels operation in progress: menu selection, drag,
  477.                     selection, etc.  Also equivalent to cancel button in
  478.                     dialogs.
  479.  
  480.     Backspace       Delete the character before the cursor
  481.  
  482.     Ctrl+BS         Delete the word before the cursor
  483.  
  484.     Arrows:
  485.  
  486.         Left            Move the cursor to the left one character
  487.  
  488.         Ctrl+Left       Move the cursor backward one word (Word delimiters are
  489.                         settable, see CUSTOMIZATION)
  490.  
  491.         Right           Move the cursor to the right one character
  492.  
  493.         Ctrl+Right      Move the cursor forward one word
  494.  
  495.         Up              Move the cursor up one line
  496.  
  497.         Ctrl+Up         Move the cursor up one paragraph.  (Paragraphs are
  498.                         delimited by blank lines.)
  499.  
  500.         Down            Move the cursor down one line.
  501.  
  502.         Ctrl+Down       Move the cursor down one paragraph.
  503.  
  504.     Ctrl+Return     Return with automatic indent, regardless of the setting of
  505.                     Auto Indent.
  506.  
  507.     Shift+Return    Return without automatic indent, regardless of the
  508.                     setting of Auto Indent.
  509.  
  510.     Ctrl+Tab        Insert an ASCII tab character, without processing
  511.                     emulated tabs.
  512.  
  513.     Alt+Ctrl+<c>    Insert the control-code equivalent of a key <c>
  514.  
  515.     Ctrl+/          Select everything (same as Select All menu item or ^A)
  516.  
  517.     Ctrl+\          Unselect
  518.  
  519.     Ctrl+U          Delete to start of line
  520.  
  521. PC Standard Keyboard
  522.  
  523.     Ctrl+Insert     Copy the primary selection to the clipboard (same as Copy
  524.                     menu item or ^C) for compatibility with Motif standard key
  525.                     binding
  526.  
  527.     Shift+Ctrl+Insert
  528.                     Copy the primary selection to the cursor location.
  529.  
  530.     Delete          Delete the character before the cursor. (Can be configured
  531.                     to delete the character after the cursor, see CUSTOMIZATION,
  532.                     and X RESOURCES)
  533.  
  534.  
  535.     Ctrl+Delete     Delete to end of line.
  536.  
  537.     Shift+Delete    Cut, remove the currently selected text and place it in the
  538.                     clipboard. (same as Cut menu item or ^X) for compatibility
  539.                     with Motif standard key binding.
  540.  
  541.     Shift+Ctrl+Delete
  542.                     Cut the primary selection to the cursor location.
  543.  
  544.     Home            Move the cursor to the beginning of the line.
  545.  
  546.     Ctrl+Home       Move the cursor to the beginning of the file.
  547.  
  548.     End             Move the cursor to the end of the line.
  549.  
  550.     Ctrl+End        Move the cursor to the end of the file.
  551.  
  552.     PageUp          Scroll and move the cursor up by one page.
  553.  
  554.     Ctrl+PageUp     Scroll and move the cursor left by one page.
  555.  
  556.     PageDown        Scroll and move the cursor down by one page.
  557.  
  558.     Ctrl+PageDown   Scroll and move the cursor right by one page.
  559.  
  560.     F10             Make the menu bar active for keyboard input (Arrow Keys,
  561.                     Return, Escape, and the Space Bar)
  562.  
  563.  
  564. Specialty Keyboards
  565.  
  566. On machines with different styles of keyboards, generally, text editing actions
  567. are properly matched to the labeled keys, such as Remove, Next-screen, etc..
  568. If you prefer different key bindings, see the heading titled "Binding Keys to
  569. Actions" in the X RESOURCES section below.
  570.  
  571.  
  572. TEXT FILLING
  573.  
  574. Text filling using the Fill Paragraph command in the Edit menu is one of the
  575. most important concepts in NEdit.  And it will be well worth your while to
  576. understand how to use it properly.
  577.  
  578. In plain text files, unlike word-processor files, there is no way to tell which
  579. lines are continuations of other lines, and which lines are meant to be
  580. separate, because there is no distinction in meaning between newline characters
  581. which separate lines in a paragraph, and ones which separate paragraphs from
  582. other text.  This makes it impossible for a text editor like NEdit to tell
  583. parts of the text which belong together as a paragraph from carefully arranged
  584. individual lines.
  585.  
  586. In continuous wrap mode, lines automatically wrap and unwrap themselves to
  587. line up properly at the right margin.  In this mode, you simply omit the
  588. newlines within paragraphs and let NEdit make the line breaks as needed.
  589. Unfortunately, continuous wrap mode is not appropriate in the majority of
  590. situations, because files with extremely long lines are not common under Unix
  591. and may not be compatible with all tools, and because you can't achieve
  592. effects like indented sections, columns, or program comments, and still take
  593. advantage of the automatic wrapping.
  594.  
  595. Without continuous wrapping, paragraph filling is not entirely automatic.
  596. Auto-Newline wrapping keeps paragraphs lined up as you type, but once entered,
  597. NEdit can no longer distinguish newlines which join wrapped text, and newlines
  598. which must be preserved.  Therefore, editing in the middle of a paragraph will
  599. often leave the right margin messy and uneven.
  600.  
  601. Since NEdit can't act automatically to keep your text lined up, you need to
  602. tell it explicitly where to operate, and that is what Fill Paragraph is for.
  603. It arranges lines to fill the space between two margins, wrapping the lines
  604. neatly at word boundaries.  Normally, the left margin for filling is inferred
  605. from the text being filled.  The first line of each paragraph is considered
  606. special, and its left indentation is maintained separately from the remaining
  607. lines (for leading indents, bullet points, numbered paragraphs, etc.).
  608. Otherwise, the left margin is determined by the furthest left non-whitespace
  609. character.  The right margin is either the Wrap Margin, set in the preferences
  610. menu (by default, the right edge of the window), or can also be chosen on the
  611. fly by using a rectangular selection (see below).
  612.  
  613. There are three ways to use Fill Paragraph.  The simplest is, while you are
  614. typing text, and there is no selection, simply select Fill Paragraph (or type
  615. Ctrl+J), and NEdit will arrange the text in the paragraph adjacent to the
  616. cursor.  A paragraph, in this case, means an area of text delimited by blank
  617. lines.
  618.  
  619. The second way to use Fill Paragraph is with a selection.  If you select a
  620. range of text and then chose Fill Paragraph, all of the text in the selection
  621. will be filled.  Again, continuous text between blank lines is interpreted as
  622. paragraphs and filled individually, respecting leading indents and blank lines.
  623.  
  624. The third, and most versatile, way to use Fill Paragraph is with a rectangular
  625. selection.  Fill Paragraph treats rectangular selections differently from other
  626. commands.  Instead of simply filling the text inside the rectangular selection,
  627. NEdit interprets the right edge of the selection as the requested wrap margin.
  628. Text to the left of the selection is not disturbed (the usual interpretation of
  629. a rectangular selection), but text to the right of the selection is included in
  630. the operation and is pulled in to the selected region.  This method enables you
  631. to fill text to an arbitrary right margin, without going back and forth to the
  632. wrap-margin dialog, as well as to exclude text to the left of the selection
  633. such as comment bars or other text columns.
  634.  
  635. SHIFT LEFT, SHIFT RIGHT
  636.  
  637. While shifting blocks of text is most important for programmers (See FEATURES
  638. FOR PROGRAMMING), it is also useful for other tasks, such as creating indented
  639. paragraphs.
  640.  
  641. To shift a block of text one tab stop to the right, select the text, then
  642. choose Shift Right from the Edit menu.  Note that the accelerator keys for
  643. these menu items are Ctrl+9 and Ctrl+0, which correspond to the right and left
  644. parenthesis on most keyboards.  Remember them as adjusting the text in the
  645. direction pointed to by the parenthesis character.  Holding the Shift key while
  646. selecting either Shift Left or Shift Right will shift the text by one character.
  647.  
  648. It is also possible to shift blocks of text by selecting the text
  649. rectangularly, and dragging it left or right (and up or down as well).  Using
  650. a rectangular selection also causes tabs within the selection to be
  651. recalculated and substituted, such that the non-whitespace characters remain
  652. stationary with respect to the selection.
  653.  
  654. FILE FORMAT
  655.  
  656. While plain-text is probably the simplest and most interchangeable file format
  657. in the computer world, there is still variation in what plain-text means from
  658. system to system.  Plain-text files can differ in character set, line
  659. termination, and wrapping.
  660.  
  661. While character set differences are the most obvious and pose the most
  662. challenge to portability, they affect NEdit only indirectly via the same font
  663. and localization mechanisms common to all X applications.  If your system is
  664. set up properly, you will probably never see character-set related problems in
  665. NEdit.  NEdit can not display Unicode text files, or any multi-byte character
  666. set.
  667.  
  668. The primary difference between an MS DOS format file and a Unix format file, is
  669. how the lines are terminated.  Unix uses a single newline character.  MS DOS
  670. uses a carriage-return and a newline.  NEdit can read and write both file
  671. formats, but internally, it uses the single character Unix standard.  NEdit
  672. auto-detects MS DOS format files based on the line termination at the start of
  673. the file.  Files are judged to be DOS format if all of the first five line
  674. terminators, within a maximum range, are DOS-style.  To change the format in
  675. which NEdit writes a file from DOS to Unix or visa versa, use the Save As...
  676. command and check or un-check the MS DOS Format button.
  677.  
  678. Wrapping within text files can vary among individual users, as well as from
  679. system to system.  Both Windows and MacOS make frequent use of plain text files
  680. with no implicit right margin.  In these files, wrapping is determined by the
  681. tool which displays them.  Files of this style also exist on Unix systems,
  682. despite the fact that they are not supported by all Unix utilities.  To display
  683. this kind of file properly in NEdit, you have to select the wrap style called
  684. Continuous.  Wrapping modes are discussed in the sections: Customizing ->
  685. Preferences, and Basic Operation -> Shifting and Filling.
  686.  
  687. The last and most minute of format differences is the terminating newline.
  688. NEdit, like vi and approximately half of Unix editors, enforces a final
  689. terminating newline on all of the files that it writes.  NEdit does this
  690. because some Unix compilers and utilities require it, and fail in various ways
  691. on files which do not have it.  Emacs does not enforce this rule.  Users are
  692. divided on which is best.
  693.  
  694. REGULAR EXPRESSIONS
  695.  
  696. Regular expressions (regex's) are useful as a way to match inexact sequences of
  697. characters.  They can be used in the `Find...' and `Replace...' search dialogs
  698. and are at the core of Color Syntax Highlighting patterns.  To specify a
  699. regular expression in a search dialog, simply click on the `Regular Expression'
  700. radio button in the dialog.
  701.  
  702. A regex is a specification of a pattern to be matched in the searched text.
  703. This pattern consists of a sequence of tokens, each being able to match a
  704. single character or a sequence of characters in the text, or assert that a
  705. specific position within the text has been reached (the latter is called an
  706. anchor.)  Tokens (also called atoms) can be modified by adding one of a number
  707. of special quantifier tokens immediately after the token.  A quantifier token
  708. specifies how many times the previous token must be matched (see below.)
  709.  
  710. Tokens can be grouped together using one of a number of grouping constructs,
  711. the most common being plain parentheses.  Tokens that are grouped in this way
  712. are also collectively considered to be a regex atom, since this new larger atom
  713. may also be modified by a quantifier.
  714.  
  715. A regex can also be organized into a list of alternatives by separating each
  716. alternative with pipe characters, `|'.  This is called alternation.  A match
  717. will be attempted for each alternative listed, in the order specified, until a
  718. match results or the list of alternatives is exhausted (see "Alternation"
  719. below.)
  720.  
  721. The Dot Meta Character
  722.  
  723. If an un-escaped dot (`.') appears in a regex, it means to match any character
  724. exactly once.  By default dot will not match a newline character, but this
  725. behavior can be changed (see help topic "Grouping", item "Matching Newlines".)
  726.  
  727. Character Classes
  728.  
  729. A character class, or range, matches exactly one character of text, but the
  730. candidates for matching are limited to those specified by the class.  Classes
  731. come in two flavors as described below:
  732.  
  733.    [...]   Regular class, match only characters listed.
  734.    [^...]  Negated class, match only characters NOT listed.
  735.  
  736. As with the dot token, by default negated character classes do not match
  737. newline, but can be made to do so.
  738.  
  739. The characters that are considered special within a class specification are
  740. different than the rest of regex syntax as follows. If the first character in a
  741. class is the `]' character (second character if the first character is `^') it
  742. is a literal character and part of the class character set.  This also applies
  743. if the first or last character is `-'.  Outside of these rules, two characters
  744. separated by `-' form a character range which includes all the characters
  745. between the two characters as well.  For example, `[^f-j]' is the same as
  746. `[^fghij]' and means to match any character that is not `f', `g', `h', `i', or
  747. `j'.
  748.  
  749. Anchors
  750.  
  751. Anchors are assertions that you are at a very specific position within the
  752. search text.  NEdit regular expressions support the following anchor tokens:
  753.  
  754.    ^    Beginning of line
  755.    $    End of line
  756.    <    Left word boundary
  757.    >    Right word boundary
  758.    \B   Not a word boundary
  759.  
  760. Note that the \B token ensures that the left and right characters are both
  761. delimiter characters, or that both left and right characters are non-delimiter
  762. characters.  Currently word anchors check only one character, e.g. the left
  763. word anchor `<' only asserts that the left character is a word delimiter
  764. character.  Similarly the right word anchor checks the right character.
  765.  
  766. Quantifiers
  767.  
  768. Quantifiers specify how many times the previous regular expression atom may be
  769. matched in the search text.  Some quantifiers can produce a large performance
  770. penalty, and can in some instances completely lock up NEdit.  To prevent this,
  771. avoid nested quantifiers, especially those of the maximal matching type (see
  772. below.)
  773.  
  774. The following quantifiers are maximal matching, or "greedy", in that they match
  775. as much text as possible.
  776.  
  777.    *   Match zero or more
  778.    +   Match one  or more
  779.    ?   Match zero or one
  780.  
  781. The following quantifiers are minimal matching, or "lazy", in that they match
  782. as little text as possible.
  783.  
  784.    *?   Match zero or more
  785.    +?   Match one  or more
  786.    ??   Match zero or one
  787.  
  788. One final quantifier is the counting quantifier, or brace quantifier. It takes
  789. the following basic form:
  790.  
  791.    {min,max}  Match from `min' to `max' times the
  792.               previous regular expression atom.
  793.  
  794. If `min' is omitted, it is assumed to be zero.  If `max' is omitted, it is
  795. assumed to be infinity.  Whether specified or assumed, `min' must be less than
  796. or equal to `max'.  Note that both `min' and `max' are limited to 65535.  If
  797. both are omitted, then the construct is the same as `*'.   Note that `{,}' and
  798. `{}' are both valid brace constructs.  A single number appearing without a
  799. comma, e.g. `{3}' is short for the `{min,min}' construct, or to match exactly
  800. `min' number of times.
  801.  
  802. The quantifiers `{1}' and `{1,1}' are accepted by the syntax, but are optimized
  803. away since they mean to match exactly once, which is redundant information.
  804. Also, for efficiency, certain combinations of `min' and `max' are converted to
  805. either `*', `+', or `?' as follows:
  806.  
  807.    {} {,} {0,}    *
  808.    {1,}           +
  809.    {,1} {0,1}     ?
  810.  
  811. Note that {0} and {0,0} are meaningless and will generate an error message at
  812. regular expression compile time.
  813.  
  814. Brace quantifiers can also be "lazy".  For example {2,5}? would try to match 2
  815. times if possible, and will only match 3, 4, or 5 times if that is what is
  816. necessary to achieve an overall match.
  817.  
  818. Alternation
  819.  
  820. A series of alternative patterns to match can be specified by separating them
  821. with vertical pipes, `|'.  An example of alternation would be `a|be|sea'.  This
  822. will match `a', or `be', or `sea'.  Each alternative can be an arbitrarily
  823. complex regular expression.  The alternatives are attempted in the order
  824. specified.  An empty alternative can be specified if desired, e.g. `a|b|'.
  825. Since an empty alternative can match nothingness (the empty string), this
  826. guarantees that the expression will match.
  827.  
  828. Comments
  829.  
  830. Comments are of the form `(?#<comment text>)' and can be inserted anywhere and
  831. have no effect on the execution of the regular expression.  They can be handy
  832. for documenting very complex regular expressions.  Note that a comment begins
  833. with `(?#' and ends at the first occurrence of an ending parenthesis, or the
  834. end of the regular expression... period.  Comments do not recognize any escape
  835. sequences.
  836.  
  837. Special Control Characters
  838.  
  839. In a regex, most ordinary characters match themselves.  For example, `ab%'
  840. would match anywhere `a' followed by `b' followed by `%' appeared in the text.
  841. However, there are some special characters that are difficult or impossible to
  842. type.  Many of these characters have escape sequences (simple characters
  843. preceded by `\') assigned to represent them.  NEdit recognizes the following
  844. special character escape sequences:
  845.  
  846.    \a  alert (bell)
  847.    \b  backspace
  848.    \e  ASCII escape character (***)
  849.    \f  form feed (new page)
  850.    \n  newline
  851.    \r  carriage return
  852.    \t  horizontal tab
  853.    \v  vertical tab
  854.  
  855.    *** For environments that use the EBCDIC character set,
  856.        when compiling NEdit set the EBCDIC_CHARSET compiler
  857.        symbol to get the EBCDIC equivalent escape
  858.        character.)
  859.  
  860. Escaped Meta Characters
  861.  
  862. Characters that have special meaning to the regex syntax are called meta
  863. characters.  NEdit provides the following escape sequences so that characters
  864. that are used by the regex syntax can be specified as ordinary characters and
  865. not interpreted as meta characters.
  866.  
  867.    \(  \)  \-  \[  \]  \<  \>  \{  \}
  868.    \.  \|  \^  \$  \*  \+  \?  \&  \\
  869.  
  870. Octal and Hex Escape Sequences
  871.  
  872. Any ASCII (or EBCDIC) character, except null, can be specified by using either
  873. an octal escape or a hexadecimal escape, each beginning with \0 or \x (or \X)
  874. respectively.  For example, \052 and \X2A both specify the `*' character.
  875. Escapes for null (\00 or \x0) are not valid and will generate an error
  876. message.  Also, any escape that exceeds \0377 or \xFF will either cause an
  877. error or have any additional character(s) interpreted literally. For example,
  878. \0777 will be interpreted as \077 (a `?' character) followed by `7' since \0777
  879. is greater than \0377.
  880.  
  881. An invalid digit will also end an octal or hexadecimal escape.  For example,
  882. \091 will cause an error since `9' is not within an octal escape's range of
  883. allowable digits (0-7) and truncation before the `9' yields \0 which is
  884. invalid.
  885.  
  886. Shortcut Escapes
  887.  
  888. NEdit defines some escape sequences that are handy shortcuts for commonly used
  889. character classes.
  890.  
  891.    \d  digits            0-9
  892.    \l  letters           a-z and A-Z
  893.    \s  whitespace        \t, \r, \v, \f, and space
  894.    \w  word characters   a-z, A-Z, 0-9, and underscore, `_'
  895.  
  896. \D, \L, \S, and \W are the same as the lowercase versions except that the
  897. resulting character class is negated.  For example, \d is equivalent to
  898. `[0-9]', while \D is equivalent to `[^0-9]'.
  899.  
  900. These escape sequences can also be used within a character class.  For example,
  901. `[\l_]' is the same as `[a-zA-Z_]'.  The escape sequences for special
  902. characters, and octal and hexadecimal escapes are also valid within a class.
  903.  
  904. Word Delimiter Tokens
  905.  
  906. Although not strictly a character class, the following escape sequences behave
  907. similarly to character classes:
  908.  
  909.    \y   Word delimiter character
  910.    \Y   Not a word delimiter character
  911.  
  912. The `\y' token matches any single character that is one of the characters that
  913. NEdit recognizes as a word delimiter character, while the `\Y' token matches
  914. any character that is NOT a word delimiter character.  Word delimiter
  915. characters are dynamic in nature, meaning that the user can change them through
  916. preference settings.  For this reason, they must be handled differently by the
  917. regular expression engine.  As a consequence of this, `\y' and `\Y' can not be
  918. used within a character class specification.
  919.  
  920. Capturing Parentheses
  921.  
  922. Capturing Parentheses are of the form `(<regex>)' and can be used to group
  923. arbitrarily complex regular expressions.  Parentheses can be nested, but the
  924. total number of parentheses, nested or otherwise, is limited to 50 pairs.  The
  925. text that is matched by the regular expression between a matched set of
  926. parentheses is captured and available for text substitutions and backreferences
  927. (see below.)  Capturing parentheses carry a fairly high overhead both in terms
  928. of memory used and execution speed, especially if quantified by `*' or `+'.
  929.  
  930. Non-Capturing Parentheses
  931.  
  932. Non-Capturing Parentheses are of the form `(?:<regex>)' and facilitate grouping
  933. only and do not incur the overhead of normal capturing parentheses.  They
  934. should not be counted when determining numbers for capturing parentheses which
  935. are used with backreferences and substitutions.  Because of the limit on the
  936. number of capturing parentheses allowed in a regex, it is advisable to use
  937. non-capturing parentheses when possible.
  938.  
  939. Positive Look-Ahead
  940.  
  941. Positive look-ahead constructs are of the form `(?=<regex>)' and implement a
  942. zero width assertion of the enclosed regular expression.  In other words, a
  943. match of the regular expression contained in the positive look-ahead construct
  944. is attempted.  If it succeeds, control is passed to the next regular expression
  945. atom, but the text that was consumed by the positive look-ahead is first
  946. unmatched (backtracked) to the place in the text where the positive look-ahead
  947. was first encountered.
  948.  
  949. One application of positive look-ahead is the manual implementation of a first
  950. character discrimination optimization.  You can include a positive look-ahead
  951. that contains a character class which lists every character that the following
  952. (potentially complex) regular expression could possibly start with.  This will
  953. quickly filter out match attempts that can not possibly succeed.
  954.  
  955. Negative Look-Ahead
  956.  
  957. Negative look-ahead takes the form `(?!<regex>)' and is exactly the same as
  958. positive look-ahead except that the enclosed regular expression must NOT
  959. match.  This can be particularly useful when you have an expression that is
  960. general, and you want to exclude some special cases.  Simply precede the
  961. general expression with a negative look-ahead that covers the special cases
  962. that need to be filtered out.
  963.  
  964. Case Sensitivity
  965.  
  966. There are two parenthetical constructs that control case sensitivity:
  967.  
  968.    (?i<regex>)   Case insensitive; `AbcD' and `aBCd' are equivalent.
  969.  
  970.    (?I<regex>)   Case sensitive;   `AbcD' and `aBCd' are different.
  971.  
  972. Regular expressions are case sensitive by default, i.e `(?I<regex>)' is
  973. assumed.  All regular expression token types respond appropriately to case
  974. insensitivity including character classes and backreferences.  There is some
  975. extra overhead involved when case insensitivity is in effect, but only to the
  976. extent of converting each character compared to lower case.
  977.  
  978. Matching Newlines
  979.  
  980. NEdit regular expressions by default handle the matching of newlines in a way
  981. that should seem natural for most editing tasks.  There are situations,
  982. however, that require finer control over how newlines are matched by some
  983. regular expression tokens.
  984.  
  985. By default, NEdit regular expressions will NOT match a newline character for
  986. the following regex tokens: dot (`.'); a negated character class (`[^...]');
  987. and the following shortcuts for character classes:
  988.  
  989.    `\d', `\D', `\l', `\L', `\s', `\S', `\w', `\W', `\Y'
  990.  
  991. The matching of newlines can be controlled for the `.' token, negated character
  992. classes, and the `\s' and `\S' shortcuts by using one of the following
  993. parenthetical constructs:
  994.  
  995.    (?n<regex>)  `.', `[^...]', `\s', `\S' match newlines
  996.  
  997.    (?N<regex>)  `.', `[^...]', `\s', `\S' don't match newlines
  998.  
  999. `(?N<regex>)' is the default behavior.
  1000.  
  1001. Notes on New Parenthetical Constructs
  1002.  
  1003. Except for plain parentheses, none of the parenthetical constructs capture
  1004. text.  If that is desired, the construct must be wrapped with capturing
  1005. parentheses, e.g. `((?i<regex))'.
  1006.  
  1007. All parenthetical constructs can be nested as deeply as desired, except for
  1008. capturing parentheses which have a limit of 50 sets of parentheses, regardless
  1009. of nesting level.
  1010.  
  1011. Back References
  1012.  
  1013. Backreferences allow you to match text captured by a set of capturing
  1014. parenthesis at some latter position in your regular expression.  A
  1015. backreference is specified using a single backslash followed by a single digit
  1016. from 1 to 9 (example: \3).  Backreferences have similar syntax to substitutions
  1017. (see below), but are different from substitutions in that they appear within
  1018. the regular expression, not the substitution string. The number specified with
  1019. a backreference identifies which set of text capturing parentheses the
  1020. backreference is associated with. The text that was most recently captured by
  1021. these parentheses is used by the backreference to attempt a match.  As with
  1022. substitutions, open parentheses are counted from left to right beginning with
  1023. 1.  So the backreference `\3' will try to match another occurrence of the text
  1024. most recently matched by the third set of capturing parentheses.  As an
  1025. example, the regular expression `(\d)\1' could match `22', `33', or `00', but
  1026. wouldn't match `19' or `01'.
  1027.  
  1028. A backreference must be associated with a parenthetical expression that is
  1029. complete.  The expression `(\w(\1))' contains an invalid backreference since
  1030. the first set of parentheses are not complete at the point where the
  1031. backreference appears.
  1032.  
  1033. Substitution
  1034.  
  1035. Substitution strings are used to replace text matched by a set of capturing
  1036. parentheses.  The substitution string is mostly interpreted as ordinary text
  1037. except as follows.
  1038.  
  1039. The escape sequences described above for special characters, and octal and
  1040. hexadecimal escapes are treated the same way by a substitution string. When the
  1041. substitution string contains the `&' character, NEdit will substitute the
  1042. entire string that was matched by the `Find...' operation. Any of the first
  1043. nine sub-expressions of the match string can also be inserted into the
  1044. replacement string.  This is done by inserting a `\' followed by a digit from 1
  1045. to 9 that represents the string matched by a parenthesized expression within
  1046. the regular expression.  These expressions are numbered left-to-right in order
  1047. of their opening parentheses.
  1048.  
  1049. The capitalization of text inserted by `&' or `\1', `\2', ... `\9' can be
  1050. altered by preceding them with `\U', `\u', `\L', or `\l'.  `\u' and `\l' change
  1051. only the first character of the inserted entity, while `\U' and `\L' change the
  1052. entire entity to upper or lower case, respectively.
  1053.  
  1054. Substitutions
  1055.  
  1056. Regular expression substitution can be used to program automatic editing
  1057. operations.  For example, the following are search and replace strings to find
  1058. occurrences of the `C' language subroutine `get_x', reverse the first and
  1059. second parameters, add a third parameter of NULL, and change the name to
  1060. `new_get_x':
  1061.  
  1062.    Search string:   `get_x *\( *([^ ,]*), *([^\)]*)\)'
  1063.    Replace string:  `new_get_x(\2, \1, NULL)'
  1064.  
  1065. Ambiguity
  1066.  
  1067. If a regular expression could match two different parts of the text, it will
  1068. match the one which begins earliest.  If both begin in the same place but match
  1069. different lengths, or match the same length in different ways, life gets
  1070. messier, as follows.
  1071.  
  1072. In general, the possibilities in a list of alternatives are considered in
  1073. left-to-right order.  The possibilities for `*', `+', and `?' are considered
  1074. longest-first, nested constructs are considered from the outermost in, and
  1075. concatenated constructs are considered leftmost-first. The match that will be
  1076. chosen is the one that uses the earliest possibility in the first choice that
  1077. has to be made.  If there is more than one choice, the next will be made in the
  1078. same manner (earliest possibility) subject to the decision on the first
  1079. choice.  And so forth.
  1080.  
  1081. For example, `(ab|a)b*c' could match `abc' in one of two ways.  The first
  1082. choice is between `ab' and `a'; since `ab' is earlier, and does lead to a
  1083. successful overall match, it is chosen.  Since the `b' is already spoken for,
  1084. the `b*' must match its last possibility, the empty string, since it must
  1085. respect the earlier choice.
  1086.  
  1087. In the particular case where no `|'s are present and there is only one `*',
  1088. `+', or `?', the net effect is that the longest possible match will be chosen.
  1089. So `ab*', presented with `xabbbby', will match `abbbb'.  Note that if `ab*' is
  1090. tried against `xabyabbbz', it will match `ab' just after `x', due to the
  1091. begins-earliest rule.  (In effect, the decision on where to start the match is
  1092. the first choice to be made, hence subsequent choices must respect it even if
  1093. this leads them to less-preferred alternatives.)
  1094.  
  1095. Examples:
  1096.  
  1097. o  Entire line.
  1098.  
  1099.   ^.*$
  1100.  
  1101. o  Blank lines.
  1102.  
  1103.   ^$
  1104.  
  1105. o  Whitespace on a line.
  1106.  
  1107.   \s+
  1108.  
  1109. o  Whitespace across lines.
  1110.  
  1111.   (?n\s+)
  1112.  
  1113. o  Whitespace that spans at least two lines.  Note minimal
  1114.    matching `*?' quantifier.
  1115.  
  1116.   (?n\s*?\n\s*)
  1117.  
  1118. o  IP address (not robust.)
  1119.  
  1120.   (?:\d{1,3}(?:\.\d{1,3}){3})
  1121.  
  1122. o  Two character US Postal state abbreviations (includes
  1123.    territories.)
  1124.  
  1125.   [ACDF-IK-PR-W][A-Z]
  1126.  
  1127. o  Web addresses
  1128.  
  1129.   (?:http://)?www\.\S+
  1130.  
  1131. o  Case insensitive double words across line breaks.
  1132.  
  1133.   (?i(?n<(\S+)\s+\1>))
  1134.  
  1135. o  Upper case words with possible punctuation.
  1136.  
  1137.   <[A-Z][^a-z\s]*>
  1138.  
  1139. References
  1140.  
  1141. An excellent book on the care and feeding of regular expressions is
  1142.  
  1143.     "Mastering Regular Expressions"
  1144.     Jeffrey E. F. Friedl
  1145.     (c) 1997, O'Reilly & Associates
  1146.     ISBN 1-56592-257-3
  1147.  
  1148.  
  1149. FEATURES FOR PROGRAMMERS
  1150.  
  1151. Though general in appearance, NEdit has many features intended specifically
  1152. for programmers.  Programming-related topics are listed here, and in the next
  1153. four sections: TABS AND TAB EMULATION, AUTOMATIC INDENT, SYNTAX HIGHLIGHTING,
  1154. and FINDING SUBROUTINE AND DATA DECLARATIONS (CTAGS).
  1155.  
  1156. Language Modes
  1157.  
  1158. When NEdit initially reads a file, it attempts to determine whether the file is
  1159. in one of the computer languages that it knows about.  Knowing what language a
  1160. file is written in allows NEdit to assign highlight patterns and smart indent
  1161. macros, and to set language specific preferences like word delimiters, tab
  1162. emulation, and auto-indent.  Language mode can be recognized from both the file
  1163. name and from the first 200 characters of content.  Language mode recognition
  1164. and language-specific preferences are configured in: Preferences -> Default
  1165. Settings -> Language Modes....
  1166.  
  1167. You can set the language mode manually for a window, by selecting it from the
  1168. menu: Preferences -> Language Modes.
  1169.  
  1170. Line Numbers
  1171.  
  1172. To find a particular line in a source file by line number, choose Goto Line
  1173. #... from the Search menu.  You can also directly select the line number text
  1174. in the compiler message in the terminal emulator window (xterm, decterm,
  1175. winterm, etc.) where you ran the compiler, and choose Goto Selected from the
  1176. Search menu.
  1177.  
  1178. To find out the line number of a particular line in your file, turn on
  1179. Statistics Line in the Preferences menu and position the insertion point
  1180. anywhere on the line.  The statistics line continuously updates the line number
  1181. of the line containing the cursor.
  1182.  
  1183. Matching Parentheses
  1184.  
  1185. To help you inspect nested parentheses, brackets, braces, quotes, and other
  1186. characters, NEdit has both an automatic parenthesis matching mode, and a Find
  1187. Matching command.  Automatic parenthesis matching is activated when you type,
  1188. or move the insertion cursor after a parenthesis, bracket, or brace.  It
  1189. momentarily highlights either the opposite character ('Delimiter') or the entire
  1190. expression ('Range') if the opposite character is visible in the window.
  1191.  
  1192. To find a matching character anywhere in the file, select it or
  1193. position the cursor after it, and choose Find Matching from the Search menu.
  1194. If the character matches itself, such as a quote or slash, select the first
  1195. character of the pair.  NEdit will match {, (, [, <, ", ', `, /, and \.
  1196.  
  1197. Opening Included Files
  1198.  
  1199. The Open Selected command in the File menu understands the C preprocessor's
  1200. #include syntax, so selecting an #include line and invoking Open Selected will
  1201. generally find the file referred to, unless doing so depends on the settings of
  1202. compiler switches or other information not available to NEdit.
  1203.  
  1204. Interface to Programming Tools
  1205.  
  1206. Integrated software development environments such as SGI's CaseVision and
  1207. Centerline Software's Code Center, can be interfaced directly with NEdit via
  1208. the client server interface.  These tools allow you to click directly on
  1209. compiler and runtime error messages and request NEdit to open files, and select
  1210. lines of interest.  The easiest method is usually to use the tool's interface
  1211. for character-based editors like vi, to invoke nc, but programatic interfaces
  1212. can also be derived using the source code for nc.
  1213.  
  1214. There are also some simple compile/review, grep, ctree, and ctags browsers
  1215. available at ftp://ftp.nedit.org/pub/v5_0_2/contrib.
  1216.  
  1217.  
  1218. TABS AND TAB EMULATION
  1219.  
  1220. Tabs are important for programming in languages which use indentation to show
  1221. nesting, as short-hand for producing white-space for leading indents.  As a
  1222. programmer, you have to decide how to use indentation, and how or whether tab
  1223. characters map to your indentation scheme.
  1224.  
  1225. Ideally, tab characters map directly to the amount of indent that you use to
  1226. distinguish nesting levels in your code.  Unfortunately, the Unix standard for
  1227. interpretation of tab characters is eight characters (probably dating back to
  1228. mechanical capabilities of the original teletype), which is usually too coarse
  1229. for a single indent.
  1230.  
  1231. Most text editors, NEdit included, allow you to change the interpretation of
  1232. the tab character, and many programmers take advantage of this, and set their
  1233. tabs to 3 or 4 characters to match their programming style.  In NEdit you set
  1234. the hardware tab distance in Preferences -> Tabs... for the current window, or
  1235. Preferences -> Default Settings -> Tabs... (general), or Preferences -> Default
  1236. Settings -> Language Modes... (language-specific) to change the defaults for
  1237. future windows.
  1238.  
  1239. Changing the meaning of the tab character makes programming much easier while
  1240. you're in the editor, but can cause you headaches outside of the editor,
  1241. because there is no way to pass along the tab setting as part of a plain-text
  1242. file.  All of the other tools which display, print, and otherwise process your
  1243. source code have to be made aware of how the tabs are set, and must be able to
  1244. handle the change.  Non-standard tabs can also confuse other programmers, or
  1245. make editing your code difficult for them if their text editors don't support
  1246. changes in tab distance.
  1247.  
  1248. Emulated Tabs
  1249.  
  1250. An alternative to changing the interpretation of the tab character is tab
  1251. emulation.  In the Tabs... dialog(s), turning on Emulated Tabs causes the Tab
  1252. key to insert the correct number of spaces and/or tabs to bring the cursor the
  1253. next emulated tab stop, as if tabs were set at the emulated tab distance rather
  1254. than the hardware tab distance.  Backspacing immediately after entering an
  1255. emulated tab will delete the fictitious tab as a unit, but as soon as you move
  1256. the cursor away from the spot, NEdit will forget that the collection of spaces
  1257. and tabs is a tab, and will treat it as separate characters.  To enter a real
  1258. tab character with "Emulate Tabs" turned on, use Ctrl+Tab.
  1259.  
  1260. It is also possible to tell NEdit not to insert ANY tab characters at all in
  1261. the course of processing emulated tabs, and in shifting and rectangular
  1262. insertion/deletion operations, for programmers who worry about the
  1263. misinterpretation of tab characters on other systems.
  1264.  
  1265.  
  1266. AUTOMATIC INDENT
  1267.  
  1268. Programmers who use structured languages usually require some form of automatic
  1269. indent, so that they don't have to continually re-type the sequences of tabs
  1270. and/or spaces needed to maintain lengthy running indents.  Version 5.0 of NEdit
  1271. is the first release of NEdit to offer "smart" indent, at least experimentally,
  1272. in addition to the traditional automatic indent which simply lines up the
  1273. cursor position with the previous line.
  1274.  
  1275. Smart Indent
  1276.  
  1277. Smart Indent in this release must still be considered somewhat experimental.
  1278. Smart indent macros are only available by default for C and C++, and while
  1279. these can easily be configured for different default indentation distances,
  1280. they may not conform to everyone's exact C programming style.  Smart indent is
  1281. programmed in terms of macros in the NEdit macro language which can be entered
  1282. in: Preferences -> Default Settings -> Indent -> Program Smart Indent.  Hooks
  1283. are provided for intervening at the point that a newline is entered, either via
  1284. the user pressing the Enter key, or through auto-wrapping; and for arbitrary
  1285. type-in to act on specific characters typed.
  1286.  
  1287. To type a newline character without invoking smart-indent when operating in
  1288. smart-indent mode, hold the Ctrl key while pressing the Return or Enter key.
  1289.  
  1290. Auto-Indent
  1291.  
  1292. With Indent set to Auto (the default), NEdit keeps a running indent.  When you
  1293. press the Return or Enter key, spaces and tabs are inserted to line up the
  1294. insert point under the start of the previous line.  Ctrl+Return in auto-indent
  1295. mode acts like a normal return, With auto-indent turned off, Ctrl+Return does
  1296. indentation.
  1297.  
  1298. Block Indentation Adjustment
  1299.  
  1300. The Shift Left and Shift Right commands as well as rectangular dragging can be
  1301. used to adjust the indentation for several lines at once.  To shift a block of
  1302. text one character to the right, select the text, then choose Shift Right from
  1303. the Edit menu.  Note that the accelerator keys for these menu items are Ctrl+9
  1304. and Ctrl+0, which correspond to  the right and left parenthesis on most
  1305. keyboards.  Remember them as adjusting the text in the direction pointed to by
  1306. the parenthesis character.  Holding the Shift key while selecting either Shift
  1307. Left or Shift Right will shift the text by one tab stop (or by one emulated tab
  1308. stop if tab emulation is turned on).  The help section: "SHIFT LEFT, SHIFT
  1309. RIGHT" above has details.
  1310.  
  1311.  
  1312. SYNTAX HIGHLIGHTING
  1313.  
  1314. Syntax Highlighting means using colors and fonts to help distinguish language
  1315. elements in programming languages and other types of structured files.
  1316. Programmers use syntax highlighting to understand code faster and better, and
  1317. to spot many kinds of syntax errors more quickly.
  1318.  
  1319. To use syntax highlighting in NEdit, select Highlight Syntax in the Preferences
  1320. menu.  If NEdit recognizes the computer language that you are using, and
  1321. highlighting rules (patterns) are available for that language, it will
  1322. highlight your text, and maintain the highlighting, automatically, as you type.
  1323.  
  1324. If NEdit doesn't correctly recognize the type of the file you are editing, you
  1325. can manually select a language mode from Language Modes in the Preferences
  1326. menu.  You can also program the method that NEdit uses to recognize language
  1327. modes in Preferences -> Default Settings -> Language Modes....
  1328.  
  1329. If no highlighting patterns are available for the language that you want to
  1330. use, you can create new patterns relatively quickly.  The section below titled
  1331. "WRITING SYNTAX HIGHLIGHTING PATTERNS", has details.
  1332.  
  1333. If you are satisfied with what NEdit is highlighting, but would like it to use
  1334. different colors or fonts, you can change these by selecting Preferences ->
  1335. Default Settings -> Syntax Highlighting -> Text Drawing Styles.  Highlighting
  1336. patterns are connected with font and color information through a common set of
  1337. styles so that colorings defined for one language will be similar across
  1338. others, and patterns within the same language which are meant to appear
  1339. identical can be changed in the same place.  To understand which styles are
  1340. used to highlight the language you are interested in, you may need to look at
  1341. "Patterns for Highlighting" section, as well.
  1342.  
  1343. Syntax highlighting is CPU intensive, and under some circumstances can affect
  1344. NEdit's responsiveness.  If you have a particularly slow system, or work with
  1345. very large files, you may not want to use it all of the time.  Syntax
  1346. highlighting introduces two kinds of delays.  The first is an initial parsing
  1347. delay, proportional to the size of the file.  This delay is also incurred when
  1348. pasting large sections of text, filtering text through shell commands, and
  1349. other circumstances involving changes to large amounts of text.  The second
  1350. kind of delay happens when text which has not previously been visible is
  1351. scrolled in to view.  Depending on your system, and the highlight patterns you
  1352. are using, this may or may not be noticeable.  A typing delay is also possible,
  1353. but unlikely if you are only using the built-in patterns.
  1354.  
  1355.  
  1356. FINDING SUBROUTINE AND DATA DECLARATIONS (CTAGS)
  1357.  
  1358. NEdit can process tags files generated using the Unix ctags command or the
  1359. Exuberant Ctags program.  Ctags creates index files correlating names of
  1360. functions and declarations with their locations in C, Fortran, or Pascal source
  1361. code files. (See the ctags manual page for more information).  Ctags produces a
  1362. file called "tags" which can be loaded by NEdit.  NEdit can manage any number
  1363. of tags files simultaneously.  Tag collisions are handled with a popup menu to
  1364. let the user decide which tag to use.  In 'Smart' mode NEdit will automatically
  1365. choose the desired tag based on the scope of the file or module. Once loaded,
  1366. the information in the tags file enables NEdit to go directly to the
  1367. declaration of a highlighted function or data structure name with a single
  1368. command.  To load a tags file, select "Load Tags File" from the File menu and
  1369. choose a tags file to load, or specify the name of the tags file on the NEdit
  1370. command line:
  1371.  
  1372.     nedit -tags tags
  1373.  
  1374. NEdit can also be set to load a tags file automatically when it starts up.
  1375. Setting the X resource nedit.tagFile to the name of a tag file tells NEdit to
  1376. look for that file at startup time (see Customizing NEdit).  The file name can
  1377. be either a complete path name, in which case NEdit will always load the same
  1378. tags file, or a file name without a path or with a relative path, in which case
  1379. NEdit will load it starting from the current directory.  The second option
  1380. allows you to have different tags files for different projects, each
  1381. automatically loaded depending on the directory you're in when you start
  1382. NEdit.  Setting the name to "tags" is an obvious choice since this is the name
  1383. that ctags uses.
  1384.  
  1385. To unload a tags file, select "Un-load Tags File" from the File menu and choose
  1386. from the list of tags files.  NEdit will keep track of tags file updates by
  1387. checking the timestamp on the files, and automatically update the tags cache.
  1388.  
  1389. To find the definition of a function or data structure once a tags file is
  1390. loaded, select the name anywhere it appears in your program (see Selecting
  1391. Text) and choose "Find Definition" from the Search menu.
  1392.  
  1393.  
  1394. SHELL COMMANDS AND FILTERS
  1395.  
  1396. The Shell menu (Unix versions only) allows you to execute Unix shell commands
  1397. from within NEdit.  You can add items to the menu to extend NEdit's command set
  1398. or to incorporate custom automatic editing features using shell commands or
  1399. editing languages like awk and sed.  To add items to the menu, select
  1400. Preferences -> Default Settings Customize Menus -> Shell Menu.  NEdit comes
  1401. pre-configured with a few useful Unix commands like spell and sort, but we
  1402. encourage you to add your own custom extensions.
  1403.  
  1404. Filter Selection... prompts you for a Unix command to use to process the
  1405. currently selected text.  The output from this command replaces the contents of
  1406. the selection.
  1407.  
  1408. Execute Command... prompts you for a Unix command and replaces the current
  1409. selection with the output of the command.  If there is no selection, it
  1410. deposits the output at the current insertion point.
  1411.  
  1412. Execute Command Line uses the position of the cursor in the window to indicate
  1413. a line to execute as a shell command line.  The cursor may be positioned
  1414. anywhere on the line.  This command allows you to use an NEdit window as an
  1415. editable command window for saving output and saving commands for re-execution.
  1416.  
  1417. The X resource called nedit.shell (See X RESOURCES) determines which Unix
  1418. shell is used to execute commands.  The default value for this resource is
  1419. /bin/csh.
  1420.  
  1421.  
  1422. LEARN/REPLAY
  1423.  
  1424. Selecting Learn Keystrokes from the Macro menu puts NEdit in learn mode.  In
  1425. learn mode, keystrokes and menu commands are recorded, to be played back later,
  1426. using the Replay Keystrokes command, or pasted into a macro in the Macro
  1427. Commands dialog of the Default Settings menu in Preferences.
  1428.  
  1429. Note that only keyboard and menu commands are recorded, not mouse clicks or
  1430. mouse movements since these have no absolute point of reference, such as cursor
  1431. or selection position.  When you do a mouse-based operation in learn mode,
  1432. NEdit will beep (repeatedly) to remind you that the operation was not recorded.
  1433.  
  1434. Learn mode is also the quickest and easiest method for writing macros.  The
  1435. dialog for creating macro commands contains a button labeled "Paste Learn /
  1436. Replay Macro", which will deposit the last sequence learned into the body of
  1437. the macro.
  1438.  
  1439.  
  1440. REPEATING ACTIONS AND LEARN/REPLAY SEQUENCES
  1441.  
  1442. You can repeat the last (keyboard-based) command, or learn/replay sequence with
  1443. the Repeat... command in the Macro menu.  To repeat an action, first do the
  1444. action (i.e. insert a character, do a search, move the cursor), then select
  1445. Repeat..., decide how or how many times you want it repeated, and click OK.
  1446. For example, to move down 30 lines through a file, you could type: <Down Arrow>
  1447. Ctrl+, 29 <Return>.  To repeat a learn/replay sequence, first learn it, then
  1448. select Repeat..., click on Learn/Replay and how you want it repeated, then
  1449. click OK.
  1450.  
  1451. If the commands you are repeating advance the cursor through the file, you can
  1452. also repeat them within a range of characters, or from the current cursor
  1453. position to the end of the file.  To iterate over a range of characters, use
  1454. the primary selection (drag the left mouse button over the text) to mark the
  1455. range you want to operate on, and select "In Selection" in the Repeat dialog.
  1456.  
  1457. When using In "Selection" or "To End" with a learned sequence, try to do cursor
  1458. movement as the last step in the sequence, since testing of the cursor position
  1459. is only done at the end of the sequence execution.  If you do cursor movement
  1460. first, for example searching for a particular word then doing a modification,
  1461. the position of the cursor won't be checked until the sequence has potentially
  1462. gone far beyond the end of your desired range.
  1463.  
  1464. It's easy for a repeated command to get out of hand, and you can easily
  1465. generate an infinite loop by using range iteration on a command which doesn't
  1466. progress.  To cancel a repeating command in progress, type Ctrl+. (period), or
  1467. select Cancel Macro from the Macro menu.
  1468.  
  1469.  
  1470. MACRO LANGUAGE
  1471.  
  1472. Macros can be called from Macro menu commands, window background menu commands,
  1473. within the smart-indent framework, and from the .neditmacro file.  Macro menu
  1474. and window background menu commands are defined under Preferences -> Default
  1475. Settings -> Customize Menus.  See the section below titled, "PREFERENCES," for
  1476. more information on creating items in these menus.  The .neditmacro file is a
  1477. file of macro commands and definitions which you can create in your home
  1478. directory, and which NEdit will automatically load when it is first started.
  1479.  
  1480. NEdit's macro language is a simple interpreter with integer arithmetic, dynamic
  1481. strings, and C-style looping constructs (very similar to the procedural portion
  1482. of the Unix awk program).  From the macro language, you can call the same
  1483. action routines which are bound to keyboard keys and menu items, as well
  1484. additional subroutines for accessing and manipulating editor data, which are
  1485. specific to the macro language (these are listed in the sections titled Macro
  1486. Subroutines, and Actions).
  1487.  
  1488. Syntax
  1489.  
  1490. An NEdit macro language program consists of a list of statements, each
  1491. terminated by a newline.  Groups of statements which are executed together
  1492. conditionally, such as the body of a loop, are surrounded by curly braces "{}".
  1493.  
  1494. Blank lines and comments are also allowed.  Comments begin with a "#" and end
  1495. with a newline, and can appear either on a line by themselves, or at the end of
  1496. a statement.
  1497.  
  1498. Statements which are too long to fit on a single line may be split across
  1499. several lines, by placing a backslash "\" character at the end of each line to
  1500. be continued.
  1501.  
  1502. Data Types
  1503.  
  1504. The NEdit macro language recognizes only three data types: dynamic character
  1505. strings, integer values and associative arrays.
  1506.  
  1507. In general strings and integers can be used interchangeably.  If a string
  1508. represents an integer value, it can be used as an integer.  Integers can be
  1509. compared and concatenated with strings.
  1510.  
  1511. Integer Constants:
  1512. Integers are non-fractional numbers in the range of -2147483647 to 2147483647.
  1513. Integer constants must be in decimal.  For example:
  1514.  
  1515.   a = -1
  1516.   b = 1000
  1517.  
  1518. Character String Constants:
  1519. Character string constants are enclosed in double quotes.  For example:
  1520.  
  1521.    a = "a string"
  1522.    dialog("Hi there!", "Dismiss")
  1523.  
  1524. Strings may also include C-language style escape sequences:
  1525.  
  1526.     \\ Backslash        \t Tab              \f Form feed
  1527.     \" Double quote     \b Backspace        \a Alert
  1528.     \n Newline          \r Carriage return  \v Vertical tab
  1529.  
  1530. For example, to send output to the terminal from which NEdit was started, a
  1531. newline character is necessary because, like printf, t_print requires explicit
  1532. newlines, and also buffers its output on a per-line basis:
  1533.  
  1534.    t_print("a = " a "\n")
  1535.  
  1536. Variables
  1537.  
  1538. Variable names must begin either with a letter (local variables), or a $
  1539. (global variables).  Beyond the first character, variables may also contain
  1540. numbers and underscores `_'.  Variables are called in to existence just by
  1541. setting them (no explicit declarations are necessary).
  1542.  
  1543. Local variables are limited in scope to the subroutine (or menu item
  1544. definition) in which they appear.  Global variables are accessible from all
  1545. routines, and their values persist beyond the call which created them, until
  1546. reset.
  1547.  
  1548. Built-in Variables:
  1549. NEdit has a number of permanently defined variables, which are used to access
  1550. global editor information and information about the the window in which the
  1551. macro is executing.  These are listed along with the built in functions in the
  1552. section titled Macro Subroutines.
  1553.  
  1554. Functions and Subroutines
  1555.  
  1556. The syntax of a function or subroutine call is:
  1557.  
  1558.    function_name(arg1, arg2, ...)
  1559.  
  1560. where arg1, arg2, etc. represent up to 9 argument values which are passed to
  1561. the routine being called.  A function or subroutine call can be on a line by
  1562. itself, as above, or if it returns a value, can be invoked within a character
  1563. or numeric expression:
  1564.  
  1565.    a = fn1(b, c) + fn2(d)
  1566.    dialog("fn3 says: " fn3())
  1567.  
  1568. Arguments are passed by value.  This means that you can not return values via
  1569. the argument list, only through the function value or indirectly through
  1570. agreed-upon global variables.
  1571.  
  1572. Built-in Functions:
  1573. NEdit has a wide range of built in functions which can be called from the macro
  1574. language.  These routines are divided into two classes, macro-language
  1575. functions, and editor action routines.  Editor action routines are more
  1576. flexible, in that they may be called either from the macro language, or bound
  1577. directly to keys via translation tables.  They are also limited, however, in
  1578. that they can not return values.  Macro language routines can return values,
  1579. but can not be bound to keys in translation tables.
  1580.  
  1581. Nearly all of the built-in subroutines operate on an implied window, which is
  1582. initially the window from which the macro was started.  To manipulate the
  1583. contents of other windows, use the focus_window subroutine to change the focus
  1584. to the ones you wish to modify.  focus_window can also be used to iterate over
  1585. all of the currently open windows, using the special keyword names, "last" and
  1586. "next".
  1587.  
  1588. For backwards compatibility, hyphenated action routine names are allowed, and
  1589. most of the existing action routines names which contain underscores have an
  1590. equivalent version containing hyphens ('-') instead of underscores.  Use of
  1591. these names is discouraged.  The macro parser resolves the ambiguity between
  1592. '-' as the subtraction/negation operator, and - as part of an action routine
  1593. name by assuming subtraction unless the symbol specifically matches an action
  1594. routine name.
  1595.  
  1596. User Defined Functions:
  1597. Users can define their own macro subroutines, using the define keyword:
  1598.  
  1599.    define subroutine_name {
  1600.       < body of subroutine >
  1601.    }
  1602.  
  1603. Macro definitions can not appear within other definitions, or within macro menu
  1604. item definitions (usually they are found in the .neditmacro file).
  1605.  
  1606. The arguments with which a user-defined subroutine or function was invoked, are
  1607. presented as $1, $2, ... , $9.  The number of arguments can be read from
  1608. $n_args.
  1609.  
  1610. Operators and Expressions
  1611.  
  1612. Operators have the same meaning and precedence that they do in C, except for ^,
  1613. which raises a number to a power (y^x means y to the x power), rather than
  1614. bitwise exclusive OR.  The table below lists operators in decreasing order of
  1615. precedence.
  1616.  
  1617.     Operators                Associativity
  1618.     ()
  1619.     ^                        right to left
  1620.     - ! ++ --                (unary)
  1621.     * / %                    left to right
  1622.     + -                      left to right
  1623.     > >= < <= == !=          left to right
  1624.     &                        left to right
  1625.     |                        left to right
  1626.     &&                       left to right
  1627.     ||                       left to right
  1628.     (concatenation)          left to right
  1629.     = += -= *= /= %=, &= |=  right to left
  1630.  
  1631. The order in which operands are evaluated in an expression is undefined, except
  1632. for && and ||, which like C, evaluate operands left to right, but stop when
  1633. further evaluation would no longer change the result.
  1634.  
  1635. Numerical Operators:
  1636. The numeric operators supported by the NEdit macro language are listed below:
  1637.  
  1638.    + addition
  1639.    - subtraction or negation
  1640.    * multiplication
  1641.    / division
  1642.    % modulo
  1643.    ^ power
  1644.    & bitwise and
  1645.    | bitwise or
  1646.  
  1647. Increment (++) and decrement (--) operators can also be appended or prepended
  1648. to variables within an expression.  Prepended increment/decrement operators act
  1649. before the variable is evaluated.  Appended increment/decrement operators act
  1650. after the variable is evaluated.
  1651.  
  1652. Logical and Comparison Operators:
  1653. Logical operations produce a result of 0 (for false) or 1 (for true).  In a
  1654. logical operation, any non-zero value is recognized to mean true.  The logical
  1655. and comparison operators allowed in the NEdit macro language are listed below:
  1656.  
  1657.    && logical and
  1658.    || logical or
  1659.    !  not
  1660.    >  greater
  1661.    <  less
  1662.    >= greater or equal
  1663.    <= less or equal
  1664.    == equal (integers and/or strings)
  1665.    != not equal (integers and/or strings)
  1666.  
  1667. Character String Operators:
  1668. The "operator" for concatenating two strings is the absence of an operator.
  1669. Adjoining character strings with no operator in between means concatenation:
  1670.  
  1671.    d = a b "string" c
  1672.    t_print("the value of a is: " a)
  1673.  
  1674. Comparison between character strings is done with the == and != operators, (as
  1675. with integers).  There are a number of useful built-in routines for working
  1676. with character strings, which are listed in the section called Macro
  1677. Subroutines.
  1678.  
  1679. Arrays and Array Operators
  1680.  
  1681. Arrays may contain either strings, integers, or other arrays. Arrays are
  1682. associative, which means that they relate two pieces of information, the key and
  1683. the value. The key is always a string; if you use integers they are converted to
  1684. strings.
  1685.  
  1686. To determine if a given key is in an array, use the in keyword.
  1687.  
  1688.     if ("6" in x)
  1689.         <body>
  1690.  
  1691. If the left side of the in keyword is an array, the result is true if every key
  1692. in the left array is in the right array. Array values are not compared.
  1693.  
  1694. To iterate through all the keys of an array use the for looping construct. Keys
  1695. are not guaranteed in any particular order:
  1696.  
  1697.     for (aKey in x)
  1698.         <body>
  1699.  
  1700. Elements can be removed from an array using the delete command:
  1701.  
  1702.     delete x[3] # deletes element with key 3
  1703.     delete x[]  # deletes all elements
  1704.  
  1705. The number of elements in an array can be determined by referencing the array
  1706. with no indices:
  1707.  
  1708.     dialog("array x has " x[] " elements", "OK")
  1709.  
  1710. Arrays can be combined with some operators. All the following operators only
  1711. compare the keys of the arrays.
  1712.  
  1713.     result = x + y
  1714.         Merge arrays: 'result' is a new array containing keys from both x and y.
  1715.         If duplicates are present values from y are used.
  1716.     result = x - y
  1717.         Remove keys: 'result' is a new array containing all keys from x that are
  1718.         not in y.
  1719.     result = x & y
  1720.         Common keys: 'result' is a new array containing all keys which are in
  1721.         both x and y. The values from y are used.
  1722.     result = x | y
  1723.         Unique keys: 'result' is a new array containing keys which exist in
  1724.         either x or y, but not both.
  1725.  
  1726. When duplicate keys are encountered using the + and & operators, the values
  1727. from the array on the right side of the operators are used for the result. All
  1728. of the above operators are array only, meaning both the left and right sides of
  1729. the operator must be arrays. The results are also arrays.
  1730.  
  1731. Array keys can also contain multiple dimensions:
  1732. x[1, 1, 1] = "string"
  1733. These are used in the expected way, e.g.:
  1734.     for (i = 1; i < 3; i++)
  1735.     {
  1736.         for (j = 1; j < 3; j++)
  1737.         {
  1738.             x[i, j] = k++
  1739.         }
  1740.     }
  1741. gives the following array:
  1742.     x[1, 1] = 0
  1743.     x[1, 2] = 1
  1744.     x[2, 1] = 2
  1745.     x[2, 2] = 3
  1746.  
  1747. Internally all indices are part of one string, separated by the string
  1748. $sub_sep (ASCII 0x18). The first key in the above example is in fact
  1749.     ["1" $sub_sep "1"]
  1750.  
  1751. If you need to extract one of the keys, you can use split(), using
  1752. $sub_sep as the separator.
  1753.  
  1754. You can also check for the existence of multi-dimensional array by
  1755. looking for $sub_sep in the key.
  1756.  
  1757. Last, you need $sub_sep if you want to use the 'in' keyword.
  1758.     if ((1,2) in myArray)
  1759.     {..}
  1760. doesn't work, but
  1761.     if (("1" $sub_sep "2") in myArray)
  1762.     {..}
  1763. does work.
  1764.  
  1765.  
  1766. Looping and Conditionals
  1767.  
  1768. NEdit supports looping constructs: for and while, and conditional statements:
  1769. if and else, with essentially the same syntax as C:
  1770.  
  1771.    for (<init>, ...; <condition>; <increment>, ...) <body>
  1772.  
  1773.    while (<condition>) <body>
  1774.  
  1775.    if (<condition>) <body>
  1776.  
  1777.    if (<condition>) <body> else <body>
  1778.  
  1779. <body>, as in C, can be a single statement, or a list of statements enclosed in
  1780. curly braces ({}).  <condition> is an expression which must evaluate to true
  1781. for the statements in <body> to be executed.  for loops may also contain
  1782. initialization statements, <init>, executed once at the beginning of the loop,
  1783. and increment/decrement statements (or any arbitrary statement), which are
  1784. executed at the end of the loop, before the condition is evaluated again.
  1785.  
  1786. Examples:
  1787.  
  1788.   for (i=0; i<100; i++)
  1789.      j = i * 2
  1790.  
  1791.   for (i=0, j=20; i<20; i++, j--) {
  1792.      k = i * j
  1793.      t_print(i, j, k)
  1794.   }
  1795.  
  1796.   while (k > 0)
  1797.   {
  1798.      k = k - 1
  1799.      t_print(k)
  1800.   }
  1801.  
  1802.   for (;;) {
  1803.      if (i-- < 1)
  1804.          break
  1805.   }
  1806.  
  1807. Loops may contain break and continue statements.  A break statement causes an
  1808. exit from the innermost loop, a continue statement transfers control to the end
  1809. of the loop.
  1810.  
  1811.  
  1812. BUILT IN VARIABLES
  1813.  
  1814. These variables are read-only and can not be changed.
  1815.  
  1816.     $active_pane -- Index of the current pane.
  1817.  
  1818.     $auto_indent -- Contains the current preference for auto indent. Can be
  1819.         "off", "on" or "auto".
  1820.  
  1821.     $cursor -- Position of the cursor in the current window.
  1822.  
  1823.     $column -- Column number of the cursor position in the current window.
  1824.  
  1825.     $display_width -- Width of the current pane in pixels.
  1826.  
  1827.     $em_tab_dist -- If tab emulation is turned on in the Tabs... dialog of the
  1828.         Preferences menu, value is the distance between emulated tab stops.  If tab
  1829.         emulation is turned off, value is -1.
  1830.  
  1831.     $empty_array -- An array with no elements. This can be used to initialize an
  1832.         array to an empty state.
  1833.  
  1834.     $file_format -- Current newline format that the file will be saved with. Can
  1835.         be "unix", "dos" or "macintosh".
  1836.  
  1837.     $file_name -- Name of the file being edited in the current window, stripped
  1838.         of directory component.
  1839.  
  1840.     $file_path -- Directory component of file being edited in the current
  1841.         window.
  1842.  
  1843.     $font_name -- Contains the current plain text font name.
  1844.  
  1845.     $font_name_bold -- Contains the current bold text font name.
  1846.  
  1847.     $font_name_bold_italic -- Contains the current bold-italic text font name.
  1848.  
  1849.     $font_name_italic -- Contains the current italic text font name.
  1850.  
  1851.     $highlight_syntax -- Whether syntax highlighting is turned on.
  1852.  
  1853.     $incremental_backup -- Contains 1 if incremental auto saving is on,
  1854.         otherwise 0.
  1855.  
  1856.     $incremental_search_line -- Has a value of 1 if the preference is selected
  1857.         to always show the incremental search line, otherwise 0.
  1858.  
  1859.     $language_mode -- Name of language mode set in the current window.
  1860.  
  1861.     $line -- Line number of the cursor position in the current window.
  1862.  
  1863.     $locked -- True if the file has been locked by the user.
  1864.  
  1865.     $make_backup_copy -- Has a value of 1 if original file is kept in a backup file on save, otherwise 0.
  1866.  
  1867.     $max_font_width -- The maximum font width of all the active styles. Syntax
  1868.         highlighting styles are only considered if syntax highlighting is turned
  1869.         on.
  1870.  
  1871.     $min_font_width -- The minimum font width of all the active styles. Syntax
  1872.     highlighting styles are only considered if syntax highlighting is turned on.
  1873.  
  1874.     $modified -- True if the file in the current window has been modified and
  1875.         the modifications have not yet been saved.
  1876.  
  1877.     $n_display_lines -- The number of lines visible in the currently active
  1878.         pane.
  1879.  
  1880.     $n_panes -- The number of panes in the current window.
  1881.  
  1882.     $overtype_mode -- True if in Overtype mode.
  1883.  
  1884.     $read_only -- True if the file is read only.
  1885.  
  1886.     $selection_left, $selection_right -- Left and right character offsets of the
  1887.         rectangular (primary) selection in the current window, or -1 if there is
  1888.         no selection or it is not rectangular.
  1889.  
  1890.     $selection_start, $selection_end -- Beginning and ending positions of the
  1891.         primary selection in the current window, or -1 if there is no text
  1892.         selected in the current window.
  1893.  
  1894.     $server_name -- Name of the current NEdit server.
  1895.  
  1896.     $show_line_numbers -- Whether line numbers are shown next to the text.
  1897.  
  1898.     $show_matching -- Contains the current preference for showing matching
  1899.         pairs, such as "[]" and "{}" pairs. Can be "off", "delimiter", or
  1900.         "range".
  1901.  
  1902.     $statistics_line -- Has a value of 1 if the statistics line is shown,
  1903.         otherwise 0.
  1904.  
  1905.     $sub_sep -- Contains the value of the array sub-script separation string.
  1906.  
  1907.     $tab_dist -- The distance between tab stops for a hardware tab character,
  1908.         as set in the Tabs... dialog of the Preferences menu.
  1909.  
  1910.     $text_length -- The length of the text in the current window.
  1911.  
  1912.     $top_line -- The line number of the top line of the currently active pane.
  1913.  
  1914.     $use_tabs -- Whether the user is allowing the NEdit to insert tab
  1915.         characters to maintain spacing in tab emulation and rectangular dragging
  1916.         operations. (The setting of the "Use tab characters in padding and
  1917.         emulated tabs" button in the Tabs... dialog of the Preferences menu.)
  1918.  
  1919.     $wrap_margin -- The right margin in the current window for text wrapping 
  1920.         and filling.
  1921.  
  1922.     $wrap_text -- The current wrap text mode. Values are "none", "auto" or
  1923.         "continuous".
  1924.  
  1925.  
  1926. BUILT-IN SUBROUTINES
  1927.  
  1928.     append_file(string, filename) -- Appends a string to a named file.  Returns
  1929.         1 on successful write, or 0 if unsuccessful.
  1930.  
  1931.     beep() -- Ring the bell
  1932.  
  1933.     clipboard_to_string() -- Returns the contents of the clipboard as a macro
  1934.         string.  Returns empty string on error.
  1935.  
  1936.     dialog(message, btn_1_label, btn_2_label, ...) -- Pop up a dialog for
  1937.         querying and presenting information to the user.  First argument is a
  1938.         string to show in the message area of the dialog.  Up to nine additional
  1939.         optional arguments represent labels for buttons to appear along the
  1940.         bottom of the dialog.  Returns the number of the button pressed (the
  1941.         first button is number 1), or 0 if the user closed the dialog via the
  1942.         window close box.
  1943.  
  1944.     focus_window(window_name) -- Sets the window on which subsequent macro
  1945.         commands operate.  window_name can be either a fully qualified file name,
  1946.         or one of "last" for the last window created, or "next" for the next
  1947.         window in the chain from the currently focused window (the first window
  1948.         being the one returned from calling focus_window("last").  Returns the
  1949.         name of the newly-focused window, or an empty string if the requested
  1950.         window was not found.
  1951.  
  1952.     get_character(position) -- Returns the single character at the position
  1953.         indicated by the first argument to the routine from the current window.
  1954.  
  1955.     get_range(start, end) -- Returns the text between a starting and ending
  1956.         position from the current window.
  1957.  
  1958.     get_selection() -- Returns a string containing the text currently selected
  1959.         by the primary selection either from the current window (no keyword), or
  1960.         from anywhere on the screen (keyword "any").
  1961.  
  1962.     getenv(name) -- Gets the value of an environment variable.
  1963.  
  1964.     length(string) -- Returns the length of a string
  1965.  
  1966.     list_dialog(message, text, btn_1_label, btn_2_label, ...) -- Pop up a dialog
  1967.         for prompting the user to choose a line from the given text string.  The
  1968.         first argument is a message string to be used as a title for the fixed
  1969.         text describing the list.  The second string provides the list data:
  1970.         this is a text string in which list entries are separated by newline
  1971.         characters.  Up to seven additional optional arguments represent labels
  1972.         for buttons to appear along the bottom of the dialog.  Returns the line
  1973.         of text selected by the user as the function value (without any newline
  1974.         separator) or the empty string if none was selected, and number of the
  1975.         button pressed (the first button is number 1), in $list_dialog_button.
  1976.         If the user closes the dialog via the window close box, the function
  1977.         returns the empty string, and $list_dialog_button returns 0.
  1978.  
  1979.     max(n1, n2, ...) -- Returns the maximum value of all of its arguments
  1980.  
  1981.     min(n1, n2, ...) -- Returns the minimum value of all of its arguments
  1982.  
  1983.     read_file(filename) -- Reads the contents of a text file into a string.  On
  1984.         success, returns 1 in $read_status, and the contents of the file as a
  1985.         string in the subroutine return value.  On failure, returns the empty
  1986.         string "" and an 0 $read_status.
  1987.  
  1988.     replace_in_string(string, search_for, replace_with, [type]) -- Replaces all
  1989.         occurrences of a search string in a string with a replacement string.
  1990.         Arguments are 1: string to search in, 2: string to search for, 3:
  1991.         replacement string.  Argument 4 is an optional search type, one of
  1992.         "literal", "case" or "regex".  The default search type is "literal".
  1993.         Returns a new string with all of the replacements done, or an empty
  1994.         string ("") if no occurrences were found.
  1995.  
  1996.     replace_range(start, end, string) -- Replaces all of the text in the current
  1997.         window between two positions.
  1998.  
  1999.     replace_selection(string) -- Replaces the primary-selection selected text in
  2000.         the current window with string.  If string is empty, the
  2001.         primary-selected text will be deleted.
  2002.  
  2003.     replace_substring(string, start, end, replace_with) -- Replacing a substring
  2004.         between two positions in a string within another string.
  2005.  
  2006.     search(search_for, start, [search_type, wrap, direction]) -- Searches
  2007.         silently in a window without dialogs, beeps, or changes to the
  2008.         selection.  Arguments are: 1: string to search for, 2: starting
  2009.         position.  Optional arguments may include the strings: "wrap" to make
  2010.         the search wrap around the beginning or end of the string, "backward" or
  2011.         "forward" to change the search direction ("forward" is the default),
  2012.         "literal", "case" or "regex" to change the search type (default is
  2013.         "literal").  Returns the starting position of the match, or -1 if
  2014.         nothing matched.  Also returns the ending position of the match in
  2015.         search_end.
  2016.  
  2017.     search_string(string, search_for, start, [search_type, direction]) --
  2018.         Built-in macro subroutine for searching a string.  Arguments are 1:
  2019.         string to search in, 2: string to search for, 3: starting position.
  2020.         Optional arguments may include the strings: "wrap" to make the search
  2021.         wrap around the beginning or end of the string, "backward" or "forward"
  2022.         to change the search direction ("forward" is the default), "literal",
  2023.         "case" or "regex" to change the search type (default is "literal").
  2024.         Returns the starting position of the match, or -1 if nothing matched.
  2025.         Also returns the ending position of the match in $search_end
  2026.  
  2027.     select(start, end) -- Selects (with the primary selection) text in the
  2028.         current buffer between a starting and ending position.
  2029.  
  2030.     select_rectangle(start, end, left, right) -- Selects a rectangular area of
  2031.         text between a starting and ending position, and confined horizontally
  2032.         to characters displayed between positions "left", and "right".
  2033.  
  2034.     set_cursor_pos(pos) -- Set the cursor position for the current window.
  2035.  
  2036.     shell_command(command, input_string) -- executes a shell command, feeding it
  2037.         input from input_string.  On completion, output from the command is
  2038.         returned as the function value, and the command's exit status is
  2039.         returned in the global variable $shell_cmd_status.
  2040.  
  2041.     split(string, separation_string [, search_type]) -- Splits a string using the
  2042.         separator specified. Optionally the search_type argument can specify how the
  2043.         separation_string is interpreted. The default is "literal". The returned value
  2044.         is an array with keys beginning at 0.
  2045.  
  2046.     string_dialog(message, btn_1_label, btn_2_label, ...) -- Pop up a dialog for
  2047.         prompting the user to enter information.  The first argument is a string
  2048.         to show in the message area of the dialog.  Up to nine additional
  2049.         optional arguments represent labels for buttons to appear along the
  2050.         bottom of the dialog.  Returns the string entered by the user as the
  2051.         function value, and number of the button pressed (the first button is
  2052.         number 1), in $string_dialog_button.  If the user closes the dialog via
  2053.         the window close box, the function returns the empty string, and
  2054.         $string_dialog_button returns 0.
  2055.  
  2056.     string_compare(string1, string2 [, consider-case]) -- Compare two strings
  2057.         and return 0 if they are equal, -1 if string1 is less than string2 or 1 if
  2058.         string1 is greater than string2. The default is to do a case sensitive
  2059.         comparison. Optionally a "nocase" argument can be supplied to force the
  2060.         comparison to ignore case differences.
  2061.  
  2062.     string_to_clipboard(string) -- Copy the contents of a macro string to the
  2063.         clipboard.
  2064.  
  2065.     substring(string, start, end) -- Returns the portion of a string between a
  2066.         starting and ending position.
  2067.  
  2068.     t_print(string1, string2, ...) -- Writes strings to the terminal (stdout)
  2069.         from which NEdit was started.
  2070.  
  2071.     tolower(string) -- Return an all lower-case version of string.
  2072.  
  2073.     toupper(string) -- Return an all upper-case version of string.
  2074.  
  2075.     write_file(string, filename) -- Writes a string (parameter 1) to a file
  2076.         named in parameter 2.  Returns 1 on successful write, or 0 if
  2077.         unsuccessful.
  2078.  
  2079.  
  2080. ACTION ROUTINES
  2081.  
  2082. All of the editing capabilities of NEdit are represented as a special type of
  2083. subroutine, called an action routine, which can be invoked from both macros and
  2084. translation table entries (see KEY BINDING below).
  2085.  
  2086.  
  2087. Actions Representing Menu Commands:
  2088.  
  2089.     File Menu                      Search Menu
  2090.     ---------------------     -----------------------
  2091.     new()                     find()
  2092.     open()                    find_dialog()
  2093.     open_dialog()             find_again()
  2094.     open_selected()           find_selection()
  2095.     close()                   replace()
  2096.     save()                    replace_dialog()
  2097.     save_as()                 replace_all()
  2098.     save_as_dialog()          replace_in_selection()
  2099.     revert_to_saved()         replace_again()
  2100.     include_file()            goto_line_number()
  2101.     include_file_dialog()     goto_line_number_dialog()
  2102.     load_macro_file()         goto_selected()
  2103.     load_macro_file_dialog()  mark()
  2104.     load_tags_file()          mark_dialog()
  2105.     load_tags_file_dialog()   goto_mark()
  2106.     unload_tags_file()        goto_mark_dialog()
  2107.     print()                   goto_matching()
  2108.     print_selection()         select_to_matching()
  2109.     exit()                    find_definition()
  2110.  
  2111.     Edit Menu                 Shell Menu
  2112.     ---------------------     -----------------------
  2113.     undo()                    execute_command()
  2114.     redo()                    execute_command_dialog()
  2115.     delete_selection()        execute_command_line()
  2116.     select_all()              filter_selection()
  2117.     shift_left()              filter_selection_dialog()
  2118.     shift_left_by_tab()       shell_menu_command()
  2119.     shift_right()
  2120.     shift_right_by_tab()      Macro Menu
  2121.     uppercase()               -----------------------
  2122.     lowercase()               repeat_macro()
  2123.     fill_paragraph()          repeat_dialog()
  2124.     control_code_dialog()     macro_menu_command()
  2125.  
  2126.                               Windows Menu
  2127.                               -----------------------
  2128.                               split_window()
  2129.                               close_pane()
  2130.  
  2131. The actions representing menu commands are named the same as the menu item with
  2132. punctuation removed, all lower case, and underscores replacing spaces.  Without
  2133. the _dialog suffix, commands which normally prompt the user for information,
  2134. instead take the information from the routine's arguments (see below).  To
  2135. present a dialog and ask the user for input, rather than supplying it in via
  2136. arguments, use the actions with the _dialog suffix.
  2137.  
  2138. Menu Action Routine Arguments:
  2139.  
  2140. Arguments are text strings enclosed in quotes.  Below are the menu action
  2141. routines which take arguments.  Optional arguments are inclosed in [].
  2142.  
  2143.     open(filename)
  2144.  
  2145.     close(["prompt" | "save" | "nosave"])
  2146.  
  2147.     save_as(filename)
  2148.  
  2149.     include_file(filename)
  2150.  
  2151.     load_tags_file(filename)
  2152.  
  2153.     unload_tags_file(filename)
  2154.  
  2155.     find_dialog([search_direction] [, search-type] [, keep-dialog])
  2156.  
  2157.     find(search_string [, search-direction] [, search-type] [, search-wrap])
  2158.  
  2159.     find_again([search-direction] [, search-wrap])
  2160.  
  2161.     find_selection([search-direction] [, search-wrap] [, non-regex-search-type])
  2162.  
  2163.     replace_dialog([search-direction] [, search-type] [, keep-dialog])
  2164.  
  2165.     replace(search-string, replace-string [, search-direction] [, search-type]
  2166.             [, search-wrap])
  2167.  
  2168.     replace_in_selection(search-string, replace-string [, search-type])
  2169.  
  2170.     replace_again([search-direction] [, search-wrap])
  2171.  
  2172.     goto_line_number([line-number])
  2173.  
  2174.     mark(mark-letter)
  2175.  
  2176.     goto_mark(mark-letter)
  2177.  
  2178.     find_definition([tag-name])
  2179.  
  2180.     filter_selection(shell-command)
  2181.  
  2182.     execute_command(shell-command)
  2183.  
  2184.     shell_menu_command(shell-menu-item-name)
  2185.  
  2186.     macro_menu_command(macro-menu-item-name)
  2187.  
  2188. Some notes on argument types above:
  2189.  
  2190.     filename            Path names are interpreted relative to the directory
  2191.                         from which NEdit was started, wildcards and ~ are not
  2192.                         expanded.
  2193.  
  2194.     search-direction    Either "forward" or "backward"
  2195.  
  2196.     search-type         Either "literal", "case", "word", "caseWord", "regex",
  2197.                         or "regexNoCase"
  2198.  
  2199.     non-regex-search-type   Either "literal". "case", "word", or "caseWord"
  2200.  
  2201.     search-wrap         Either "wrap" or "nowrap"
  2202.  
  2203.     consider-case       Either "case" or "nocase"
  2204.  
  2205.     keep-dialog         Either "keep" or "nokeep"
  2206.  
  2207.     mark-letter         The mark command limits users to single letters.  Inside
  2208.                         of macros, numeric marks are allowed, which won't
  2209.                         interfere with marks set by the user.
  2210.  
  2211.     (macro or shell)    Name of the command exactly as specified in the Shell
  2212.     -menu-item-name     Menu or Macro Menu dialogs
  2213.  
  2214.  
  2215. Window Preferences Actions
  2216.  
  2217.     set_auto_indent("off" | "on" | "smart") -- Set auto indent mode for the
  2218.         current window.
  2219.  
  2220.     set_em_tab_dist(em-tab-distance) -- Set the emulated tab size. An
  2221.         em-tab-distance value of 0 or -1 translates to no emulated tabs.
  2222.         Em-tab-distance must be smaller than 1000.
  2223.  
  2224.     set_fonts(font-name, italic-font-name, bold-font-name,
  2225.         bold-italic-font-name) -- Set all the fonts used for the current window.
  2226.         
  2227.     set_highlight_syntax([0 | 1]) -- Set syntax highlighting mode for the
  2228.         current window.  A value of 0 turns it off and a value of 1 turns it on.
  2229.         If no parameters are supplied the option is toggled.
  2230.  
  2231.     set_incremental_backup([0 | 1]) -- Set incremental backup mode for the
  2232.         current window.  A value of 0 turns it off and a value of 1 turns it on.
  2233.         If no parameters are supplied the option is toggled.
  2234.  
  2235.     set_incremental_search_line([0 | 1]) -- Show or hide the incremental search
  2236.         line for the current window.  A value of 0 turns it off and a value of 1
  2237.         turns it on.  If no parameters are supplied the option is toggled.
  2238.  
  2239.     set_language_mode(language-mode) -- Set the language mode for the current
  2240.         window. If the language mode is "" or unrecognized, it will be set to
  2241.         Plain.
  2242.  
  2243.     set_locked([0 | 1]) -- This only affects the locked status of a file, not
  2244.         it's read-only status. Permissions are NOT changed.  A value of 0 turns
  2245.         it off and a value of 1 turns it on. If no parameters are supplied the
  2246.         option is toggled.
  2247.  
  2248.     set_make_backup_copy([0 | 1]) -- Set whether backup copies are made during
  2249.         saves for the current window.  A value of 0 turns it off and a value of
  2250.         1 turns it on.  If no parameters are supplied the option is toggled.
  2251.  
  2252.     set_overtype_mode([0 | 1]) -- Set overtype mode for the current window.  A
  2253.         value of 0 turns it off and a value of 1 turns it on.  If no parameters
  2254.         are supplied the option is toggled.
  2255.  
  2256.     set_show_line_numbers([0 | 1]) -- Show or hide line numbers for the current
  2257.         window.  A value of 0 turns it off and a value of 1 turns it on.  If no
  2258.         parameters are supplied the option is toggled.
  2259.  
  2260.     set_show_matching("off" | "delimiter" | "range") -- Set show matching (...)
  2261.         mode for the current window.
  2262.  
  2263.     set_statistics_line([0 | 1]) -- Show or hide the statistics line for the
  2264.         current window.  A value of 0 turns it off and a value of 1 turns it on.
  2265.         If no parameters are supplied the option is toggled.
  2266.  
  2267.     set_tab_dist(tab-distance) -- Set the size of hardware tab spacing.
  2268.         Tab-distance must must be a value greater than 0 and no greater than
  2269.         20.
  2270.  
  2271.     set_use_tabs([0 | 1]) -- Set whether tabs are used for the current window. 
  2272.         A value of 0 turns it off and a value of 1 turns it on.  If no
  2273.         parameters are supplied the option is toggled.
  2274.  
  2275.     set_wrap_margin(wrap-width) -- Set the wrap width for text wrapping of the
  2276.         current window. A value of 0 means to wrap at window width.
  2277.  
  2278.     set_wrap_text("none" | "auto" | "continuous") -- Set wrap text mode for the
  2279.         current window.
  2280.  
  2281.  
  2282. Keyboard-Only Actions
  2283.  
  2284.     backward_character(["nobell"]) -- Moves the cursor one character to the
  2285.         left.
  2286.  
  2287.     backward_paragraph(["nobell"]) -- Moves the cursor to the beginning of the
  2288.         paragraph, or if the cursor is already at the beginning of a paragraph,
  2289.         moves the cursor to the beginning of the previous paragraph.  Paragraphs
  2290.         are defined as regions of text delimited by one or more blank lines.
  2291.  
  2292.     backward_word(["nobell"]) -- Moves the cursor to the beginning of a word,
  2293.         or, if the cursor is already at the beginning of a word, moves the
  2294.         cursor to the beginning of the previous word.  Word delimiters are
  2295.         user-settable, and defined by the X resource wordDelimiters.
  2296.  
  2297.     beginning_of_file(["scrollbar"]) -- Moves the cursor to the beginning of the
  2298.         file.
  2299.  
  2300.     beginning_of_line() -- Moves the cursor to the beginning of the line.
  2301.  
  2302.     beginning_of_selection() -- Moves the cursor to the beginning of the
  2303.         selection without disturbing the selection.
  2304.  
  2305.     copy_clipboard() -- Copies the current selection to the clipboard.
  2306.  
  2307.     copy_primary() -- Copies the primary selection to the cursor.
  2308.  
  2309.     copy_to() -- If a secondary selection exists, copies the secondary selection
  2310.         to the cursor.  If no secondary selection exists, copies the primary
  2311.         selection to the pointer location.
  2312.  
  2313.     copy_to_or_end_drag() -- Completes either a secondary selection operation,
  2314.         or a primary drag.  If the user is dragging the mouse to adjust a
  2315.         secondary selection, the selection is copied and either inserted at the
  2316.         cursor location, or, if pending-delete is on and a primary selection
  2317.         exists in the window, replaces the primary selection.  If the user is
  2318.         dragging a block of text (primary selection), completes the drag
  2319.         operation and leaves the text at it's current location.
  2320.  
  2321.     cut_clipboard() -- Deletes the text in the primary selection and places it
  2322.         in the clipboard.
  2323.  
  2324.     cut_primary() -- Copies the primary selection to the cursor and deletes it
  2325.         at its original location.
  2326.  
  2327.     delete_selection() -- Deletes the contents of the primary selection.
  2328.  
  2329.     delete_next_character(["nobell"]) -- If a primary selection exists, deletes
  2330.         its contents.  Otherwise, deletes the character following the cursor.
  2331.  
  2332.     delete_previous_character(["nobell"]) -- If a primary selection exists,
  2333.         deletes its contents.  Otherwise, deletes the character before the
  2334.         cursor.
  2335.  
  2336.     delete_next_word(["nobell"]) -- If a primary selection exists, deletes its
  2337.         contents. Otherwise, deletes the word following the cursor.
  2338.  
  2339.     delete_previous_word(["nobell"]) -- If a primary selection exists, deletes
  2340.         its contents. Otherwise, deletes the word before the cursor.
  2341.  
  2342.     delete_to_start_of_line(["nobell"]) -- If a primary selection exists,
  2343.         deletes its contents. Otherwise, deletes the characters between the
  2344.         cursor and the start of the line.
  2345.  
  2346.     delete_to_end_of_line(["nobell"]) -- If a primary selection exists, deletes
  2347.         its contents. Otherwise, deletes the characters between the cursor and
  2348.         the end of the line.
  2349.  
  2350.     deselect_all() -- De-selects the primary selection.
  2351.  
  2352.     end_of_file(["scrollbar"]) -- Moves the cursor to the end of the file.
  2353.  
  2354.     end_of_line() -- Moves the cursor to the end of the line.
  2355.  
  2356.     end_of_selection() -- Moves the cursor to the end of the selection without
  2357.         disturbing the selection.
  2358.  
  2359.     exchange(["nobell"]) -- Exchange the primary and secondary selections.
  2360.  
  2361.     extend_adjust() -- Attached mouse-movement events to begin a selection
  2362.         between the cursor and the mouse, or extend the primary selection to the
  2363.         mouse position.
  2364.  
  2365.     extend_end() -- Completes a primary drag-selection operation.
  2366.  
  2367.     extend_start() -- Begins a selection between the cursor and the mouse.  A
  2368.         drag-selection operation can be started with either extend_start or
  2369.         grab_focus.
  2370.  
  2371.     focus_pane([relative-pane] | [positive-index] | [negative-index]) -- Move
  2372.         the focus to the requested pane.  Possible arguments are:
  2373.  
  2374.         relative-pane is one of "first", "last", "next", "previous".
  2375.         positive-index are numbers greater than 0. 1 is the same as "first".
  2376.         negative-index are numbers less than 0. -1 is the as "last".
  2377.  
  2378.     forward_character(["nobell"]) -- Moves the cursor one character to the
  2379.         right.
  2380.  
  2381.     forward_paragraph(["nobell"]) -- Moves the cursor to the beginning of the
  2382.         next paragraph. Paragraphs are defined as regions of text delimited by
  2383.         one or more blank lines.
  2384.  
  2385.     forward_word(["tail"] ["nobell"]) -- Moves the cursor to the beginning of
  2386.         the next word.  Word delimiters are user-settable, and defined by the X
  2387.         resource wordDelimiters.  If the "tail" argument is supplied the cursor
  2388.         will be moved to the end of the current word or the end of the next
  2389.         word, if the cursor is between words.
  2390.  
  2391.     grab_focus() -- Moves the cursor to the mouse pointer location, and prepares
  2392.         for a possible drag-selection operation (bound to extend_adjust), or
  2393.         multi-click operation (a further grab_focus action).  If a second
  2394.         invocation of grab focus follows immediately, it selects a whole word,
  2395.         or a third, a whole line.
  2396.  
  2397.     insert_string("string") -- If pending delete is on and the cursor is inside
  2398.         the selection, replaces the selection with "string".  Otherwise, inserts
  2399.         "string" at the cursor location.
  2400.  
  2401.     key_select("direction" [, "nobell"]) -- Moves the cursor one character in
  2402.         "direction" ("left", "right", "up", or "down") and extends the
  2403.         selection.  Same as forward/backward-character("extend"), or
  2404.         process-up/down("extend"), for compatibility with previous versions.
  2405.  
  2406.     move-destination() -- Moves the cursor to the pointer location without
  2407.         disturbing the selection.  (This is an unusual way of working.  We left
  2408.         it in for compatibility with previous versions, but if you actually use
  2409.         this capability, please send us some mail, otherwise it is likely to
  2410.         disappear in the future.
  2411.  
  2412.     move_to() -- If a secondary selection exists, deletes the contents of the
  2413.         secondary selection and inserts it at the cursor, or if pending-delete
  2414.         is on and there is a primary selection, replaces the primary selection. 
  2415.         If no secondary selection exists, moves the primary selection to the
  2416.         pointer location, deleting it from its original position.
  2417.  
  2418.     move_to_or_end_drag() -- Completes either a secondary selection operation,
  2419.         or a primary drag.  If the user is dragging the mouse to adjust a
  2420.         secondary selection, the selection is deleted and either inserted at the
  2421.         cursor location, or, if pending-delete is on and a primary selection
  2422.         exists in the window, replaces the primary selection.  If the user is
  2423.         dragging a block of text (primary selection), completes the drag
  2424.         operation and deletes the text from it's current location.
  2425.  
  2426.     newline() -- Inserts a newline character.  If Auto Indent is on, lines up
  2427.         the indentation of the cursor with the current line.
  2428.  
  2429.     newline_and_indent() -- Inserts a newline character and lines up the
  2430.         indentation of the cursor with the current line, regardless of the
  2431.         setting of Auto Indent.
  2432.  
  2433.     newline_no_indent() -- Inserts a newline character, without automatic
  2434.         indentation, regardless of the setting of Auto Indent.
  2435.  
  2436.     next_page(["stutter"] ["column"] ["scrollbar"] ["nobell"]) -- Moves the
  2437.         cursor and scroll forward one page.  The parameter "stutter" moves the
  2438.         cursor to the bottom of the display,unless it is already there,
  2439.         otherwise it will page down.  The parameter "column" will maintain the
  2440.         preferred column while moving the cursor. 
  2441.  
  2442.     page_left(["scrollbar"] ["nobell"]) -- Move the cursor and scroll left one
  2443.         page.
  2444.  
  2445.     page_right(["scrollbar"] ["nobell"]) -- Move the cursor and scroll right one
  2446.         page.
  2447.  
  2448.     paste_clipboard() -- Insert the contents of the clipboard at the cursor, or
  2449.         if pending delete is on, replace the primary selection with the contents
  2450.         of the clipboard.
  2451.  
  2452.     previous_page(["stutter"] ["column"] ["scrollbar"] ["nobell"]) -- Moves the
  2453.         cursor and scroll backward one page. The parameter "stutter" moves the
  2454.         cursor to the top of the display,unless it is already there, otherwise
  2455.         it will page up.The parameter "column" will maintain the preferred
  2456.         column while moving the cursor.
  2457.  
  2458.     process_bdrag() -- Same as secondary_or_drag_start for compatibility with
  2459.         previous versions.
  2460.  
  2461.     process_cancel() -- Cancels the current extend_adjust, secondary_adjust, or
  2462.         secondary_or_drag_adjust in progress.
  2463.  
  2464.     process_down(["nobell"]) -- Moves the cursor down one line.
  2465.  
  2466.     process_return() -- Same as newline for compatibility with previous
  2467.         versions.
  2468.  
  2469.     process_shift_down(["nobell"]) -- Same as process_down("extend") for
  2470.         compatibility with previous versions.
  2471.  
  2472.     process_shift_up(["nobell"]) -- Same as process_up("extend") for
  2473.         compatibility with previous versions.
  2474.  
  2475.     process_tab() -- If tab emulation is turned on, inserts an emulated tab,
  2476.         otherwise inserts a tab character.
  2477.  
  2478.     process_up(["nobell"]) -- Moves the cursor up one line.
  2479.  
  2480.     raise_window([relative-window] | [positive-index] | [negative-index]) --
  2481.         Raise the current focused window to the front if no argument is
  2482.         supplied.  Possible arguments are:
  2483.  
  2484.         relative-pane is one of "first", "last", "next", "previous".
  2485.         positive-index are numbers greater than 0. 1 is the same as "first".
  2486.         negative-index are numbers less than 0. -1 is the as "last".
  2487.  
  2488.     scroll_down(nLines) Scroll the display down (towards the end of the file) by
  2489.         nLines.
  2490.  
  2491.     scroll_left(nPixels) -- Scroll the display left by nPixels.
  2492.  
  2493.     scroll_right(nPixels) -- Scroll the display right by nPixels.
  2494.  
  2495.     scroll_up(nLines) -- Scroll the display up (towards the beginning of the
  2496.         file) by nLines.
  2497.  
  2498.     scroll_to_line(lineNum) -- Scroll to position line number lineNum at the top
  2499.         of the pane.  The first line of a file is line 1.
  2500.  
  2501.     secondary_adjust() -- Attached mouse-movement events to extend the secondary
  2502.         selection to the mouse position.
  2503.  
  2504.     secondary_or_drag_adjust() -- Attached mouse-movement events to extend the
  2505.         secondary selection, or reposition the primary text being dragged. 
  2506.         Takes two optional arguments, "copy", and "overlay".  "copy" leaves a
  2507.         copy of the dragged text at the site at which the drag began.  "overlay"
  2508.         does the drag in overlay mode, meaning the dragged text is laid on top
  2509.         of the existing text, obscuring and ultimately deleting it when the drag
  2510.         is complete.
  2511.  
  2512.     secondary_or_drag_start() -- To be attached to a mouse down event.  Begins
  2513.         drag selecting a secondary selection, or dragging the contents of the
  2514.         primary selection, depending on whether the mouse is pressed inside of
  2515.         an existing primary selection.
  2516.  
  2517.     secondary_start() -- To be attached to a mouse down event.  Begin drag
  2518.         selecting a secondary selection.
  2519.  
  2520.     select_all() -- Select the entire file.
  2521.  
  2522.     self_insert() -- To be attached to a key-press event, inserts the character
  2523.         equivalent of the key pressed.
  2524.  
  2525. Arguments to Keyboard Action Routines
  2526.  
  2527. In addition to the arguments listed in the call descriptions, any routine
  2528. involving cursor movement can take the argument "extend", meaning, adjust the
  2529. primary selection to the new cursor position.
  2530. Routines which take the "extend" argument as well as mouse dragging operations
  2531. for both primary and secondary selections can take the optional keyword "rect",
  2532. meaning, make the selection rectangular.
  2533. Any routine that accepts the "scrollbar" argument will move the display but not
  2534. the cursor or selection.
  2535. Routines that accept the "nobell" argument will fail silently without beeping,
  2536. if that argument is supplied.
  2537.  
  2538. CUSTOMIZATION
  2539.  
  2540. NEdit can be customized many different ways.  The most important user-settable
  2541. options are presented in the Preferences menu, including all options that users
  2542. might need to change during an editing session.  Options set in the Default
  2543. Settings sub-menu of the Preferences menu can be preserved between sessions by
  2544. selecting Save Defaults, which writes a file called .nedit in the user's home
  2545. directory.  See the section titled PREFERENCES for more details.
  2546.  
  2547. User defined commands can be added to NEdit's Shell, Macro, and window
  2548. background menus.  Dialogs for creating items in these menus can be found under
  2549. Customize Menus in the Default Settings sub menu of the Preferences menu.
  2550.  
  2551. For users who depend on NEdit every day and want to tune every excruciating
  2552. detail, there are also X resources for tuning a vast number of such details,
  2553. down to the color of each individual button.  See the section "X Resources" for
  2554. more information, as well as a list of selected resources.
  2555.  
  2556. The most common reason customizing your X resources for NEdit, however, is key
  2557. binding.  While limited key binding can be done through Preferences settings
  2558. (Preferences -> Default Settings -> Customize Menus), you can really only add
  2559. keys this way, and each key must have a corresponding menu item.  Any
  2560. significant changes to key binding should be made via the Translations resource
  2561. and menu accelerator resources.  The sections titled "Key Binding" and "X
  2562. Resources" have more information.
  2563.  
  2564.  
  2565. PREFERENCES
  2566.  
  2567. The Preferences menu allows you to set options for both the current editing
  2568. window, and default values for newly created windows and future NEdit
  2569. sessions.  Options in the Preferences menu itself (not in the Default Settings
  2570. sub-menu) take effect immediately and refer to the current window only.
  2571. Options in the Default Settings sub-menu have no effect on the current window,
  2572. but instead provide initial settings for future windows created using the New
  2573. or Open commands.  Preferences set in the Default Settings sub-menu can also be
  2574. saved in a file that is automatically read by NEdit at startup time, by
  2575. selecting Save Defaults.
  2576.  
  2577. Preferences Menu
  2578.  
  2579.    Default Settings -- Menu of initial settings for future windows.
  2580.       Generally the same as the options in the main part of the menu, but
  2581.       apply as defaults for future windows created during this NEdit
  2582.       session.  These settings can be saved using the Save Defaults command
  2583.       below, to be loaded automatically each time NEdit is started.
  2584.  
  2585.    Save Defaults -- Save the default options as set under Default Settings
  2586.       for future NEdit sessions.
  2587.  
  2588.    Statistics Line -- Show the full file name, line number, and length of the
  2589.       file being edited.
  2590.  
  2591.    Incremental Search Line -- Keep the incremental search bar (Search ->
  2592.       Find Incremental) permanently displayed at the top of the window.
  2593.  
  2594.    Show Line Numbers -- Display line numbers to the right of the text.
  2595.  
  2596.    Language Mode -- Tells NEdit what language (if any) to assume, for
  2597.       selecting language-specific features such as highlight patterns and
  2598.       smart indent macros, and setting language specific preferences like
  2599.       word delimiters, tab emulation, and auto-indent.  See FEATURES FOR
  2600.       PROGRAMMING for more information.
  2601.  
  2602.    Auto Indent -- Setting Auto Indent "on" maintains a running indent
  2603.       (pressing the return key will line up the cursor with the indent level
  2604.       of the previous line).  If smart indent macros are available for the
  2605.       current language mode, smart indent can be selected and NEdit will
  2606.       attempt to guess proper language indentation for each new line.  See
  2607.       AUTOMATIC INDENT for more information.
  2608.  
  2609.    Wrap -- Choose between two styles of automatic wrapping or none.  Auto
  2610.       Newline wrap, wraps text at word boundaries when the cursor reaches the
  2611.       right margin, by replacing the space or tab at the last word boundary
  2612.       with a newline character.  Continuous Wrap wraps long lines which
  2613.       extend past the right margin. Continuous Wrap mode is typically used to
  2614.       produce files where newlines are omitted within paragraphs, to make
  2615.       text filling automatic (a kind of poor-man's word processor).  Text of
  2616.       this style is common on Macs and PCs but is not necessarily supported
  2617.       very well under Unix (except in programs which deal with e-mail, for
  2618.       which it is often the format of choice).
  2619.  
  2620.       Wrap Margin -- Set margin for Auto Newline Wrap, Continuous Wrap, and
  2621.          Fill Paragraph.  Lines may, be wrapped at the right margin of the
  2622.          window, or the margin can be set at a specific column.
  2623.  
  2624.    Tabs -- Set the tab distance (number of characters between tab stops) for
  2625.       tab characters, and control tab emulation and use of tab characters in
  2626.       padding and emulated tabs.
  2627.  
  2628.    Text Font... -- Change the font(s) used to display text (fonts for menus
  2629.       and dialogs must be set using X resources for the text area of the
  2630.       window). See below for more information.
  2631.  
  2632.    Highlight Syntax -- If NEdit recognizes the language being edited, and
  2633.       highlighting patterns are available for that language, use fonts and
  2634.       colors to enhance viewing of the file.  See "SYNTAX HIGHLIGHTING" for
  2635.       more information.
  2636.  
  2637.    Make Backup Copy -- On Save, write a backup copy of the file as it existed
  2638.       before the Save command with the extension .bck (Unix only).
  2639.  
  2640.    Incremental Backup -- Periodically make a backup copy of the file being
  2641.       edited under the name ~filename on Unix or _filename on VMS (see CRASH
  2642.       RECOVERY).
  2643.  
  2644.    Show Matching (..) -- Momentarily highlight matching parenthesis,
  2645.       brackets, and braces when one of these characters is typed, or when the
  2646.       insertion cursor is positioned after it.
  2647.  
  2648.    Overtype -- In overtype mode, new characters entered replace the
  2649.       characters in front of the insertion cursor, rather than being inserted
  2650.       before them.
  2651.  
  2652.    Read Only -- Lock the file against accidental modification.  This
  2653.       temporarily prevents the file from being modified in this NEdit
  2654.       session. Note that this is different from setting the file protection.
  2655.  
  2656. Preferences -> Default Settings Menu
  2657.  
  2658. Options in the Preferences -> Default Settings menu have the same meaning as
  2659. those in the top-level Preferences menu, except that they apply to future NEdit
  2660. windows and future NEdit sessions if saved with the Save Defaults command.
  2661. Additional options which appear in this menu are:
  2662.  
  2663.     Language Modes -- Define language recognition information (for determining
  2664.         language mode from file name or content) and set language specific
  2665.         preferences.
  2666.  
  2667.     Tag Collisions -- How to react to multiple tags for the same name.  Tags are
  2668.         described in the section: Features for Programmers -> Finding
  2669.         Declarations (ctags).  In Show All mode, all matching tags are displayed
  2670.         in a dialog.  In Smart mode, if one of the matching tags is in the
  2671.         current window, that tag is chosen, without displaying the dialog.
  2672.  
  2673.     Customize Menus -- Add/remove items from the Shell, Macro, and window
  2674.         background menus (see below).
  2675.  
  2676.     Searching -- Options for controlling the behavior of Find and Replace
  2677.         commands:
  2678.  
  2679.         Verbose - Presents search results in dialog form, asks before wrapping a
  2680.             search back around the beginning (or end) of the file.
  2681.  
  2682.         Wrap Around - Search and Replace operations wrap
  2683.             around the beginning (or end) of the file.
  2684.  
  2685.         Beep On Search Wrap - Beep when Search and Replace operations wrap
  2686.             around the beginning (or end) of the file (only if Wrap Around is
  2687.             turned on).
  2688.  
  2689.         Keep Dialogs Up - Don't pop down Replace and Find boxes after searching.
  2690.  
  2691.         Default Search Style - Initial setting for search type in Find and
  2692.             Replace dialogs.
  2693.  
  2694.         Default Replace Scope - Initial setting for the scope in the
  2695.             Replace/Find dialog, when a selection exists.  It can be either "In
  2696.             Window", "In Selection", or "Smart".  "Smart" results in "In Window"
  2697.             if the size of the selection is smaller than 1 line, and to "In
  2698.             Selection" otherwise.
  2699.  
  2700.     Syntax Highlighting -- Program and configure enhanced text display for new
  2701.         or supported languages (See SYNTAX HIGHLIGHTING and WRITING SYNTAX
  2702.         HIGHLIGHTING PATTERNS).
  2703.  
  2704.     Sort Open Prev. Menu -- Option to order the File -> Open Previous menu
  2705.         alphabetically, versus in order of last access.
  2706.  
  2707.     Popups Under Pointer -- Display pop-up dialogs centered on the current mouse
  2708.         position, as opposed to centered on the parent window.  This generally
  2709.         speeds interaction, and is essential for users who users who set their
  2710.         window managers so keyboard focus follows the mouse.
  2711.  
  2712.     Modification Warnings -- Pop up a warning dialog when files get changed
  2713.         external to NEdit.  Checking is done both before a save which might
  2714.         overwrite a modified file, and when changes are made to NEdit's
  2715.         displayed version of the file.
  2716.  
  2717.     Exit Warnings -- Ask before exiting when two or more files are open in an
  2718.         NEdit session.
  2719.  
  2720.     Initial Window Size -- Default size for new windows.
  2721.  
  2722. Changing Font(s)
  2723.  
  2724. The font used to display text in NEdit is set under Preferences -> Text Font
  2725. (for the current window), or Preferences -> Default Settings Text Font (for
  2726. future windows).  These dialogs also allow you to set fonts for syntax
  2727. highlighting.  If you don't intend to use syntax highlighting, you can ignore
  2728. most of the dialog, and just set the field labeled Primary Font.
  2729.  
  2730. Unless you are absolutely certain about the types of files that you will be
  2731. editing with NEdit, you should choose a fixed-spacing font.  Many, if not most,
  2732. plain-text files are written expecting to be viewed with fixed character
  2733. spacing, and will look wrong with proportional spacing.  NEdit's filling,
  2734. wrapping, and rectangular operations will also work strangely if you choose a
  2735. proportional font.
  2736.  
  2737. Note that in the font browser (the dialog brought up by the Browse... button),
  2738. the subset of fonts which are shown is narrowed depending on the
  2739. characteristics already selected.  It is therefore important to know that you
  2740. can unselect characteristics from the lists by clicking on the selected items a
  2741. second time.
  2742.  
  2743. Fonts for syntax highlighting should ideally match the primary font in both
  2744. height and spacing.  A mismatch in spacing will result in similar distortions
  2745. as choosing a proportional font: column alignment will sometimes look wrong,
  2746. and rectangular operations, wrapping, and filling will behave strangely.  A
  2747. mismatch in height will cause windows to re-size themselves slightly when
  2748. syntax highlighting is turned on or off, and increase the inter- line spacing
  2749. of the text.  Unfortunately, on some systems it is hard to find sets of fonts
  2750. which match exactly in height.
  2751.  
  2752. Customizing Menus
  2753.  
  2754. You can add or change items in the Shell, Macro, and window background menus
  2755. under Preferences -> Default Settings -> Customize Menus.  When you choose one
  2756. of these, you will see a dialog with a list of the current user-configurable
  2757. items from the menu on the left.  To change an existing item, select it from
  2758. the list, and its properties will appear in the remaining fields of the dialog,
  2759. where you may change them.  Selecting the item "New" from the list allows you
  2760. to enter new items in the menu.
  2761.  
  2762. Hopefully most of the characteristics are self explanatory, but here are a few
  2763. things to note:
  2764.  
  2765. Accelerator keys are keyboard shortcuts which appear on the right hand side of
  2766. the menus, and allow you avoid pulling down the menu and activate the command
  2767. with a single keystroke.  Enter accelerators by typing the keys exactly as you
  2768. would to activate the command.
  2769.  
  2770. Mnemonics are a single letter which should be part of the menu item name, which
  2771. allow users to traverse and activate menu items by typing keys when the menu is
  2772. pulled down.
  2773.  
  2774. In the Shell Command field of the Shell Commands dialog, the % character
  2775. expands to the name (including directory path) of the file in the window.  To
  2776. include a % character in the command, use %%.
  2777.  
  2778. The Menu Entry field can contain special characters for constructing
  2779. hierarchical sub-menus, and for making items which appear only in certain
  2780. language modes.  The right angle bracket character ">" creates a sub-menu.  The
  2781. name of the item itself should be the last element of the path formed from
  2782. successive sub-menu names joined with ">".  Menu panes are called in to
  2783. existence simply by naming them as part of a Menu Entry name.  To put several
  2784. items in the same sub-menu, repeat the same hierarchical sequence for each.
  2785. For example, in the Macro Commands dialog, two items with menu entries: a>b>c
  2786. and a>b>d would create a single sub menu under the macro menu called "a", which
  2787. would contain a single sub-menu, b, holding the actual items, c and d:
  2788.  
  2789.     +---++---++---+
  2790.     |a >||b >||c  |
  2791.     +---++---+|d  |
  2792.               +---+
  2793.  
  2794. To qualify a menu entry with a language mode, simply add an at-sign "@" at the
  2795. end of the menu command, followed (no space) by a language mode name.  To make
  2796. a menu item which appears in several language modes, append additional @s and
  2797. language mode names.  For example, an item with the menu entry:
  2798.  
  2799.   Make C Prototypes@C@C++
  2800.  
  2801. would appear only in C and C++ language modes, and:
  2802.  
  2803.   Make Class Template@C++
  2804.  
  2805. would appear only in C++ mode.  Menu items with no qualification appear in all
  2806. language modes.
  2807.  
  2808. If a menu item is followed by the single language qualification "@*", that item
  2809. will appear only if there are no applicable language-specific items of the same
  2810. name in the same submenu.  For example, if you have the following three entries
  2811. in the same menu:
  2812.  
  2813.   Make Prototypes@C@C++
  2814.   Make Prototypes@Java
  2815.   Make Prototypes@*
  2816.  
  2817. The first will be available when the language mode is C or C++, the second when
  2818. the language mode is Java, and for all other language modes (including the
  2819. "Plain" non-language mode).  If the entry:
  2820.  
  2821.   Make Prototypes
  2822.  
  2823. also exists, this will always appear, meaning that the menu will always have
  2824. two "Make Prototypes" entries, whatever the language mode.
  2825.  
  2826. Sharing Customizations with Other NEdit Users
  2827.  
  2828. If you have written macro or shell menu commands, highlight patterns, or smart-
  2829. indent macros that you want to share with other NEdit users, you can make a
  2830. file which they can load into their NEdit environment.
  2831.  
  2832. To load such a file, start NEdit with the command:
  2833.  
  2834.    nedit -import <file>
  2835.  
  2836. In the new NEdit session, verify that the imported patterns or macros do what
  2837. you want, then select Preferences -> Save Defaults.  Saving incorporates the
  2838. changes into your own .nedit file, so the next time you run NEdit, you will not
  2839. have to import the distribution file.
  2840.  
  2841. Loading a customization file is automated, but creating one is not.  To produce
  2842. a file to be imported by other users, you must make a copy of your own .nedit
  2843. file, and edit it, by hand, to remove everything but the few items of interest
  2844. to the recipient.  Leave only the individual resource(s), and within those
  2845. resources, only the particular macro, pattern, style, etc, that you wish to
  2846. exchange.  For example, to share a highlighting pattern set, you would include
  2847. the patterns, any new styles you added, and language mode information only if
  2848. the patterns are intended to support a new language rather than updating an
  2849. existing one. For example:
  2850.  
  2851.     nedit.highlightPatterns:\
  2852.     My Language:1:0{\n\
  2853.         Comment:"#":"$"::Comment::\n\
  2854.         Loop Header:"^[ \\t]*loop:":::Loop::\n\
  2855.         }
  2856.     nedit.languageModes: My Language:.my::::::
  2857.     nedit.styles: Loop:blue:Bold
  2858.  
  2859. Resources are in the format of X resource files, but the format of text within
  2860. multiple-item resources like highlight patterns, language modes, macros,
  2861. styles, etc., are private to NEdit.  Each resource is a string which ends at
  2862. the first newline character not escaped with \, so you must be careful about
  2863. how you treat ends of lines.  While you can generally just cut and paste
  2864. indented sections, if something which was originally in the middle of a
  2865. resource string is now at the end, you must remove the \ line continuation
  2866. character(s) so it will not join the next line into the resource.  Conversely,
  2867. if something which was originally at the end of a resource is now in the
  2868. middle, you'll have to add continuation character(s) to make sure that the
  2869. resource string is properly continued from beginning to end, and possibly
  2870. newline character(s) (\n) to make sure that it is properly separated from the
  2871. next item.
  2872.  
  2873.  
  2874. X RESOURCES
  2875.  
  2876. NEdit has additional options to those provided in the Preferences menu which
  2877. are set using X resources.  Like most other X programs, NEdit can be customized
  2878. to vastly unnecessary proportions, from initial window positions down to the
  2879. font and shadow colors of each individual button (A complete discussion of how
  2880. to do this is left to books on the X Windows System).  Key binding (see KEY
  2881. BINDING) is one of the most useful of these resource settable options.
  2882.  
  2883. X resources are usually specified in a file called .Xdefaults or .Xresources in
  2884. your home directory (on VMS this is sys$login:decw$xdefaults.dat).  On some
  2885. systems, this file is read and its information attached to the X server (your
  2886. screen) when you start X.  On other systems, the .Xdefaults file is read each
  2887. time you run an X program.  When X resource values are attached to the X
  2888. server, changes to the resource file are not available to application programs
  2889. until you either run the xrdb program with the appropriate file as input, or
  2890. re-start the X server.
  2891.  
  2892. The .nedit File
  2893.  
  2894. The .nedit (saved preferences) file is in the same format as an X resource
  2895. file, and its contents can be moved into your X resource file.  One reason for
  2896. doing so would be to attach server specific preferences, such as a default font
  2897. to a particular X server.  Another reason for moving preferences into the X
  2898. resource file would be to keep preferences menu options and resource settable
  2899. options together in one place. Though the files are the same format, additional
  2900. resources should not be added to the .nedit file, they will not be read, and
  2901. NEdit modifies this file by overwriting it completely.  Note also that the
  2902. contents of the .nedit file take precedence over the values of X resources.
  2903. Using Save Defaults after moving the contents of your .nedit file to your
  2904. .Xdefaults file will re-create the .nedit file, interfering with the options
  2905. that you have moved.
  2906.  
  2907. Selected X Resource Names
  2908.  
  2909. The following are selected NEdit resource names and default values for NEdit
  2910. options not settable via the Preferences menu (for preference resource names,
  2911. see your .nedit file):
  2912.  
  2913.     nedit.tagFile: (not defined) -- The name of a file of the type produced
  2914.         by the Unix ctags command which NEdit will load at startup time
  2915.         (see FINDING SUBROUTINE AND DATA DECLARATIONS above).  The tag file
  2916.         provides a database from which NEdit can automatically open files
  2917.         containing the definition of a particular subroutine or data type.
  2918.  
  2919.     nedit.shell: /bin/csh -- (Unix systems only) The Unix shell (command
  2920.         interpreter) to use for executing commands from the Shell menu
  2921.  
  2922.     nedit.wordDelimiters: .,/\\`'!@#%^&*()-=+{}[]":;<>? -- The characters,
  2923.         in addition to blanks and tabs, which mark the boundaries between
  2924.         words for the move-by-word (Ctrl+Arrow) and select-word (double
  2925.         click) commands.
  2926.  
  2927.     nedit.remapDeleteKey: True -- Setting this resource to False restores
  2928.         the original Motif binding of the delete key to forward-delete.
  2929.         This binding causes problems when X servers with one delete/
  2930.         backspace configuration are connected with X clients of the other.
  2931.         Users with a backspace key in the backspace/delete position and who
  2932.         use only machines with that style of keyboard can set this resource
  2933.         to False to get back the forward-delete function of the delete key.
  2934.  
  2935.     nedit.bgMenuButton: ~Shift~Ctrl~Meta~Alt<Btn3Down> -- Specification for
  2936.         mouse button / key combination to post the background menu (in the
  2937.         form of an X translation table event specification).  The event
  2938.         specification should be as specific as possible, since it will
  2939.         override less specific translation table entries.
  2940.  
  2941.     nedit.maxPrevOpenFiles: 30 -- Number of files listed in the Open
  2942.         Previous sub-menu of the File menu. Setting this to zero disables
  2943.         the Open Previous menu item and maintenance of the .neditdb file.
  2944.  
  2945.     nedit.stdOpenDialog: False -- Setting this resource to True restores the
  2946.         standard Motif style of Open dialog.  NEdit file open dialogs are
  2947.         missing a text field at the bottom of the dialog, where the file
  2948.         name can be entered as a string.  The field is removed in NEdit to
  2949.         encourage users to type file names in the list, a non-standard, but
  2950.         much faster method for finding files.
  2951.  
  2952.     nedit.printCommand: (system specific) -- Command used by the print dialog
  2953.         to print a file, i.e. lp, lpr, etc..
  2954.  
  2955.     nedit.printCopiesOption: (system specific) -- Option name used to
  2956.         specify multiple copies to the print command.  If the option should
  2957.         be separated from its argument by a space, leave a trailing space.
  2958.         If blank, no "Number of Copies" item will appear in the print dialog.
  2959.  
  2960.     nedit.printQueueOption: (system specific) -- Option name used to specify
  2961.         a print queue to the print command.  If the option should be
  2962.         separated from its argument by a space, leave a trailing space. If
  2963.         blank, no "Queue" item will appear in the print dialog.
  2964.  
  2965.     nedit.printNameOption: (system specific) -- Option name used to specify a
  2966.         job name to the print command.  If the option should be separated
  2967.         from its argument by a space, leave a trailing space. If blank, no
  2968.         job or file name will be attached to the print job or banner page.
  2969.  
  2970.     nedit.printHostOption: (system specific) -- Option name used to specify a
  2971.         host name to the print command.  If the option should be separated
  2972.         from its argument by a space, leave a trailing space. If blank, no
  2973.         "Host" item will appear in the print dialog.
  2974.  
  2975.     nedit.printDefaultQueue: (system specific) -- The name of the default
  2976.         print queue.  Used only to display in the print dialog, and has no
  2977.         effect on printing.
  2978.  
  2979.     nedit.printDefaultHost: (system specific) -- The node name of the
  2980.         default print host.  Used only to display in the print dialog, and
  2981.         has no effect on printing.
  2982.  
  2983.     nedit.multiClickTime: (system specific) -- Maximum time in milliseconds
  2984.         allowed between mouse clicks within double and triple click actions.
  2985.  
  2986.     nedit*scrollBarPlacement: BOTTOM_LEFT -- How scroll bars are placed in
  2987.         NEdit windows, as well as various lists and text fields in the
  2988.         program.  Other choices are: BOTTOM_RIGHT, TOP_LEFT, or TOP_RIGHT.
  2989.  
  2990.     nedit*text.autoWrapPastedText: False -- When Auto- Newline Wrap is turned
  2991.         on, apply automatic wrapping (which normally only applies to typed
  2992.         text) to pasted text as well.
  2993.  
  2994.     nedit*text.heavyCursor: False -- For monitors with poor resolution or
  2995.         users who have difficulty seeing the cursor, makes the cursor in the
  2996.         text editing area of the window heavier and darker.
  2997.  
  2998.     nedit*text.foreground: black -- Foreground color of the text editing area
  2999.         of the NEdit window.
  3000.  
  3001.     nedit*text.background: white -- Background color of the text editing area
  3002.         of the NEdit window.
  3003.  
  3004.     nedit*text.selectForeground: black -- Foreground (text) color for selections
  3005.         in the text editing area of the NEdit window.
  3006.  
  3007.     nedit*text.selectBackground: gray80 -- Color for selections in the text
  3008.         editing area of the NEdit window.
  3009.  
  3010.     nedit*text.highlightForeground: white -- Foreground (text) color for
  3011.         highlights (parenthesis flashing) in the text editing area of the NEdit
  3012.         window.
  3013.  
  3014.     nedit*text.highlightBackground: red -- Color for highlights (parenthesis
  3015.         flashing) in the text editing area of the NEdit window.
  3016.  
  3017.     nedit*text.cursorForeground: black -- Color for text cursor in the text
  3018.         editing area of the NEdit window.
  3019.  
  3020.     nedit*text.blinkRate: 600 -- Blink rate of the text insertion cursor in
  3021.         milliseconds.  Set to zero to stop blinking.
  3022.  
  3023.     nedit*text.Translations: -- Modifies key bindings (see below).
  3024.  
  3025.     nedit*foreground: black -- Default foreground color for menus, dialogs,
  3026.         scroll bars, etc..
  3027.  
  3028.     nedit*background: gray70 -- Default background color for menus, dialogs,
  3029.         scroll bars, etc..
  3030.  
  3031.     nedit*fontList: helvetica-bold-14 -- Default font for menus, dialogs,
  3032.         scroll bars, etc..
  3033.  
  3034.     nc.autoStart: False -- Whether the nc program should automatically start
  3035.         an NEdit server (without prompting the user) if an appropriate server
  3036.         is not found.
  3037.  
  3038.     nc.serverCommand: nedit -server -- Command used by the nc program to
  3039.         start an NEdit server.
  3040.  
  3041. Selected NEdit Widget Names
  3042.  
  3043. You can change colors, fonts, and other characteristics, of the widgets named
  3044. below, by appending .background, .foreground, .fontList, etc., to these names:
  3045.  
  3046.     nedit*statsLine -- Statistics line
  3047.  
  3048.     nedit*menuBar -- Top-of-window menu-bar
  3049.  
  3050.     nedit*textHorScrollBar -- Horizontal scroll bar
  3051.  
  3052.     nedit*textVertScrollBar -- Vertical scroll bar
  3053.  
  3054.     nedit*helpText -- Help window text
  3055.  
  3056.  
  3057. KEY BINDING
  3058.  
  3059. There are several ways to change key bindings in NEdit.  The easiest way to add
  3060. a new key binding in NEdit is to define a macro in Preferences -> Default
  3061. Settings -> Customize Menus -> Macro Menu.  However, if you want to change
  3062. existing bindings or add a significant number of new key bindings you will need
  3063. to do so via X resources.
  3064.  
  3065. Before reading this section, you must understand how to set X resources (see
  3066. the section titled "X RESOURCES" above).  Since setting X resources is tricky,
  3067. it is also helpful when working on key-binding, to set some easier-to-verify
  3068. resource at the same time, as a simple check that the NEdit program is actually
  3069. seeing your changes.  The appres program is also very helpful in checking that
  3070. the resource settings that you make, actually reach the program for which they
  3071. are intended in the correct form.
  3072.  
  3073. Key Binding in General
  3074.  
  3075. Keyboard commands are associated with editor action routines through two
  3076. separate mechanisms in NEdit.  Commands which appear in pull-down menus have
  3077. individual resources designating a keyboard equivalent to the menu command,
  3078. called an accelerator key.  Commands which do not have an associated menu item
  3079. are bound to keys via the X toolkit translation mechanism.  The methods for
  3080. changing these two kinds of bindings are quite different.
  3081.  
  3082. Key Binding Via Translations
  3083.  
  3084. The most general way to bind actions to keys in NEdit is to use the translation
  3085. table associated with the text widget.  To add a binding to Alt+Y to insert the
  3086. string "Hi!", for example, add lines similar to the following to your X
  3087. resource file:
  3088.  
  3089.     NEdit*text.Translations: #override \n\
  3090.         Alt<Key>y: insert_string("Hi!") \n
  3091.  
  3092. The section "ACTION ROUTINES" above lists the actions available to be bound.
  3093.  
  3094. Translation tables map key and mouse presses, window operations, and other
  3095. kinds of events, to actions.  The syntax for translation tables is simplified
  3096. here, and you may need to refer to a book on the X window system for more
  3097. detailed information.
  3098.  
  3099. Note that accelerator resources (discussed below) override translations, and
  3100. that most Ctrl+letter and Alt+letter combinations are already bound to an
  3101. accelerator key.  To use one of these combinations from a translation table,
  3102. therefore, you must first un-bind the original menu accelerator.
  3103.  
  3104. A resource for changing a translation table consists of a keyword; #override,
  3105. #augment, or #replace; followed by lines (separated by newline characters)
  3106. pairing events with actions.  Events begin with modifiers, like Ctrl, Shift, or
  3107. Alt, followed by the event type in <>.  BtnDown, Btn1Down, Btn2Down, Btn1Up,
  3108. Key, KeyUp are valid event types.  For key presses, the event type is followed
  3109. by the name of the key.  You can specify a combination of events, such as a
  3110. sequence of key presses, by separating them with commas.  The other half of the
  3111. event/action pair is a set of actions.  These are separated from the event
  3112. specification by a colon and from each other by spaces.  Actions are names
  3113. followed by parentheses, optionally containing one or more parameters separated
  3114. by comas.
  3115.  
  3116. Changing Menu Accelerator Keys
  3117.  
  3118. The menu shortcut keys shown at the right of NEdit menu items can also be
  3119. changed via X resources.  Each menu item has two resources associated with it,
  3120. accelerator, the event to trigger the menu item; and acceleratorText, the
  3121. string shown in the menu.  The form of the accelerator resource is the same as
  3122. events for translation table entries discussed above, though multiple keys and
  3123. other subtleties are not allowed.  The resource name for a menu is the title in
  3124. lower case, followed by "Menu", the resource name of menu item is the name in
  3125. lower case, run together, with words separated by caps, and all punctuation
  3126. removed.  For example, to change Cut to Ctrl+X, you would add the following to
  3127. your .Xdefaults file:
  3128.  
  3129.     nedit*editMenu.cut.accelerator: Ctrl<Key>x
  3130.     nedit*editMenu.cut.acceleratorText: Ctrl+X
  3131.  
  3132. Accelerator keys with optional shift key modifiers, like Find..., have an
  3133. additional accelerator resource with Shift appended to the name.  For example:
  3134.  
  3135.     nedit*searchMenu.find.acceleratorText: [Shift]Alt+F
  3136.     nedit*searchMenu.find.accelerator: Alt<Key>f
  3137.     nedit*searchMenu.findShift.accelerator: Shift Alt<Key>f
  3138.  
  3139.  
  3140. WRITING SYNTAX HIGHLIGHTING PATTERNS
  3141.  
  3142. Patterns are the mechanism by which syntax highlighting (see SYNTAX
  3143. HIGHLIGHTING above) is programmed in NEdit, that is, how it decides what to
  3144. highlight in a given language.  To create syntax highlighting patterns for a
  3145. new language, or to modify existing patterns, select "Patterns for
  3146. Highlighting" from "Syntax Highlighting" sub-section of the "Default Settings"
  3147. sub-menu of the "Preferences" menu.
  3148.  
  3149. First, a word of caution.  As with regular expression matching in general, it
  3150. is quite possible to write patterns which are so inefficient that they
  3151. essentially lock up the editor as they recursively re-examine the entire
  3152. contents of the file thousands of times.  With the multiplicity of patterns,
  3153. the possibility of a lock-up is significantly increased in syntax
  3154. highlighting.  When working on highlighting patterns, be sure to save your work
  3155. frequently.
  3156.  
  3157. NEdit's syntax highlighting is unusual in that it works in real-time (as you
  3158. type), and yet is completely programmable using standard regular expression
  3159. notation.  Other syntax highlighting editors usually fall either into the
  3160. category of fully programmable but unable to keep up in real-time, or real-time
  3161. but limited programmability.  The additional burden that NEdit places on
  3162. pattern writers in order to achieve this speed/flexibility mix, is to force
  3163. them to state self-imposed limitations on the amount of context that patterns
  3164. may examine when re-parsing after a change.  While the "Pattern Context
  3165. Requirements" heading is near the end of this section, it is not optional, and
  3166. must be understood before making any any serious effort at pattern writing.
  3167.  
  3168. In its simplest form, a highlight pattern consists of a regular expression to
  3169. match, along with a style representing the font an color for displaying any
  3170. text which matches that expression.  To bold the word, "highlight", wherever it
  3171. appears the text, the regular expression simply would be the word "highlight".
  3172. The style (selected from the menu under the heading of "Highlight Style")
  3173. determines how the text will be drawn.  To bold the text, either select an
  3174. existing style, such as "Keyword", which bolds text, or create a new style and
  3175. select it under Highlight Style.
  3176.  
  3177. The full range of regular expression capabilities can be applied in such a
  3178. pattern, with the single caveat that the expression must conclusively match or
  3179. not match, within the pre-defined context distance (as discussed below under
  3180. Pattern Context Requirements).
  3181.  
  3182. To match longer ranges of text, particularly any constructs which exceed the
  3183. requested context, you must use a pattern which highlights text between a
  3184. starting and ending regular expression match.  To do so, select "Highlight text
  3185. between starting and ending REs" under "Matching", and enter both a starting
  3186. and ending regular expression.  For example, to highlight everything between
  3187. double quotes, you would enter a double quote character in both the starting
  3188. and ending regular expression fields.  Patterns with both a beginning and
  3189. ending expression span all characters between the two expressions, including
  3190. newlines.
  3191.  
  3192. Again, the limitation for automatic parsing to operate properly is that both
  3193. expressions must match within the context distance stated for the pattern set.
  3194.  
  3195. With the ability to span large distances, comes the responsibility to recover
  3196. when things go wrong.  Remember that syntax highlighting is called upon to
  3197. parse incorrect or incomplete syntax as often as correct syntax.  To stop a
  3198. pattern short of matching its end expression, you can specify an error
  3199. expression, which stops the pattern from gobbling up more than it should.  For
  3200. example, if the text between double quotes shouldn't contain newlines, the
  3201. error expression might be "$".  As with both starting and ending expressions,
  3202. error expressions must also match within the requested context distance.
  3203.  
  3204. Coloring Sub-Expressions
  3205.  
  3206. It is also possible to color areas of text within a regular expression match.
  3207. A pattern of this type associates a style with sub-expressions references of
  3208. the parent pattern (as used in regular expression substitution patterns, see
  3209. the section titled: REGULAR EXPRESSIONS).  Sub-expressions of both the starting
  3210. and ending patterns may be colored.  For example, if the parent pattern has a
  3211. starting expression "\<", and end expression "\>", (for highlighting all of the
  3212. text contained within angle brackets), a sub-pattern using "\0" in both the
  3213. starting and ending expression fields could color the brackets differently from
  3214. the intervening text.  A quick shortcut to typing in pattern names in the
  3215. Parent Pattern field is to use the middle mouse button to drag them from the
  3216. Patterns list.
  3217.  
  3218. Hierarchical Patterns
  3219.  
  3220. A hierarchical sub-pattern, is identical to a top level pattern, but is invoked
  3221. only between the beginning and ending expression matches of its parent
  3222. pattern.  Like the sub-expression coloring patterns discussed above, it is
  3223. associated with a parent pattern using the Parent Pattern field in the pattern
  3224. specification.  Pattern names can be dragged from the pattern list with the
  3225. middle mouse button to the Parent Pattern field.
  3226.  
  3227. After the start expression of the parent pattern matches, the syntax
  3228. highlighting parser searches for either the parent's end pattern or a matching
  3229. sub-pattern.  When a sub-pattern matches, control is not returned to the parent
  3230. pattern until the entire sub-pattern has been parsed, regardless of whether the
  3231. parent's end pattern appears in the text matched by the sub-pattern.
  3232.  
  3233. The most common use for this capability is for coloring sub-structure of
  3234. language constructs (smaller patterns embedded in larger patterns).
  3235. Hierarchical patterns can also simplify parsing by having sub-patterns "hide"
  3236. special syntax from parent patterns, such as special escape sequences or
  3237. internal comments.
  3238.  
  3239. There is no depth limit in nesting hierarchical sub-patterns, but beyond the
  3240. third level of nesting, automatic re-parsing will sometimes have to re-parse
  3241. more than the requested context distance to guaranty a correct parse (which can
  3242. slow down the maximum rate at which the user can type if large sections of text
  3243. are matched only by deeply nested patterns).
  3244.  
  3245. While this is obviously not a complete hierarchical language parser it is still
  3246. useful in many text coloring situations.  As a pattern writer, your goal is not
  3247. to completely cover the language syntax, but to generate colorings that are
  3248. useful to the programmer.  Simpler patterns are usually more efficient and also
  3249. more robust when applied to incorrect code.
  3250.  
  3251. Deferred (Pass-2) Parsing
  3252.  
  3253. NEdit does pattern matching for syntax highlighting in two passes.  The first
  3254. pass is applied to the entire file when syntax highlighting is first turned on,
  3255. and to new ranges of text when they are initially read or pasted in.  The
  3256. second pass is applied only as needed when text is exposed (scrolled in to
  3257. view).
  3258.  
  3259. If you have a particularly complex set of patterns, and parsing is beginning to
  3260. add a noticeable delay to opening files or operations which change large
  3261. regions of text, you can defer some of that parsing from startup time, to when
  3262. it is actually needed for viewing the text.  Deferred parsing can only be used
  3263. with single expression patterns, or begin/end patterns which match entirely
  3264. within the requested context distance.  To defer the parsing of a pattern to
  3265. when the text is exposed, click on the Pass-2 pattern type button in the
  3266. highlight patterns dialog.
  3267.  
  3268. Sometimes a pattern can't be deferred, not because of context requirements, but
  3269. because it must run concurrently with pass-1 (non-deferred) patterns.  If they
  3270. didn't run concurrently, a pass-1 pattern might incorrectly match some of the
  3271. characters which would normally be hidden inside of a sequence matched by the
  3272. deferred pattern.  For example, C has character constants enclosed in single
  3273. quotes.  These typically do not cross line boundaries, meaning they can be
  3274. parsed entirely within the context distance of the C pattern set and should be
  3275. good candidates for deferred parsing.  However, they can't be deferred because
  3276. they can contain sequences of characters which can trigger pass-one patterns.
  3277. Specifically, the sequence, '\"', contains a double quote character, which
  3278. would be matched by the string pattern and interpreted as introducing a string.
  3279.  
  3280. Pattern Context Requirements
  3281.  
  3282. The context requirements of a pattern set state how much additional text around
  3283. any change must be examined to guaranty that the patterns will match what they
  3284. are intended to match.  Context requirements are a promise by NEdit to the
  3285. pattern writer, that the regular expressions in his/her patterns will be
  3286. matched against at least <line context> lines and <character context>
  3287. characters, around any modified text.  Combining line and character
  3288. requirements guaranty that both will be met.
  3289.  
  3290. Automatic re-parsing happens on EVERY KEYSTROKE, so the amount of context which
  3291. must be examined is very critical to typing efficiency.  The more complicated
  3292. your patterns, the more critical the context becomes.  To cover all of the
  3293. keywords in a typical language, without affecting the maximum rate at which
  3294. users can enter text, you may be limited to just a few lines and/or a few
  3295. hundred characters of context.
  3296.  
  3297. The default context distance is 1 line, with no minimum character requirement.
  3298. There are several benefits to sticking with this default.  One is simply that
  3299. it is easy to understand and to comply with.  Regular expression notation is
  3300. designed around single line matching.  To span lines in a regular expression,
  3301. you must explicitly mention the newline character "\n", and matches which are
  3302. restricted to a single line are virtually immune to lock-ups.  Also, if you can
  3303. code your patterns to work within a single line of context, without an
  3304. additional character-range context requirement, the parser can take advantage
  3305. the fact that patterns don't cross line boundaries, and nearly double its
  3306. efficiency over a one-line and 1-character context requirement.  (In a single
  3307. line context, you are allowed to match newlines, but only as the first and/or
  3308. last character.)
  3309.  
  3310.  
  3311. WRITING SMART INDENT MACROS
  3312.  
  3313. Smart indent macros can be written for any language, but are usually more
  3314. difficult to write than highlighting patterns.  A good place to start, of
  3315. course, is to look at the existing macros for C and C++.
  3316.  
  3317. Smart indent macros for a language mode consist of standard NEdit macro
  3318. language code attached to any or all of the following three activation
  3319. conditions: 1) When smart indent is first turned on for a text window
  3320. containing code of the language, 2) When a newline is typed and smart indent
  3321. is expected, 3) after any character is typed.  To attach macro code to any of
  3322. these code "hooks", enter it in the appropriate section in the Preferences ->
  3323. Default Settings -> Auto Indent -> Program Smart Indent dialog.
  3324.  
  3325. Typically most of the code should go in the initialization section, because
  3326. that is the appropriate place for subroutine definitions, and smart indent
  3327. macros are complicated enough that you are not likely to want to write them as
  3328. one monolithic run of code.  You may also put code in the Common/Shared
  3329. Initialization section (accessible through the button in the upper left corner
  3330. of the dialog).  Unfortunately, since the C/C++ macros also reside in the
  3331. common/shared section, when you add code there, you run some risk of missing
  3332. out on future upgrades to these macros, because your changes will override the
  3333. built-in defaults.
  3334.  
  3335. The newline macro is invoked after the user types a newline, but before the
  3336. newline is entered in the buffer.  It takes a single argument ($1) which is the
  3337. position at which the newline will be inserted.  It must return the number of
  3338. characters of indentation the line should have, or -1.  A return value of -1
  3339. means to do a standard auto-indent.  You must supply a newline macro, but the
  3340. code: "return -1" (auto-indent), or "return 0" (no indent) is sufficient.
  3341.  
  3342. The type-in macro takes two arguments.  $1 is the insert position, and $2 is
  3343. the character just inserted, and does not return a value.  You can do just
  3344. about anything here, but keep in mind that this macro is executed for every
  3345. keystroke typed, so if you try to get too fancy, you may degrade performance.
  3346.  
  3347.  
  3348. THE NEDIT COMMAND LINE
  3349.  
  3350. nedit [-read] [-create] [-line n | +n] [-server] [-do command] [-tags file]
  3351.     [-tabs n] [-wrap] [-nowrap] [-autowrap] [-autoindent] [-noautoindent]
  3352.     [-autosave] [-noautosave] [-lm languagemode] [-rows n] [-columns n]
  3353.     [-font font] [-geometry geometry] [-iconic] [-noiconic] [-svrname name]
  3354.     [-display [host]:server[.screen] [-background color] [-foreground color]
  3355.     [-xrm resourcestring] [-import file] [file...]
  3356.  
  3357.     -read -- Open the file Read Only regardless of the actual file protection.
  3358.  
  3359.     -create -- Don't warn about file creation when a file doesn't exist.
  3360.  
  3361.     -line n (or +n) -- Go to line number n
  3362.  
  3363.     -server -- Designate this session as an NEdit server, for processing
  3364.         commands from the nc program.  nc can be used to interface NEdit to code
  3365.         development environments, mailers, etc., or just as a quick way to open
  3366.         files from the shell command line without starting a new NEdit session.
  3367.  
  3368.     -do command -- Execute an NEdit macro or action on each file following the
  3369.         -do argument on the command line.  -do is particularly useful from the
  3370.         nc program, where nc -do can remotely execute commands in an nedit
  3371.         -server session.
  3372.  
  3373.     -tags file -- Load a file of directions for finding definitions of program
  3374.         subroutines and data objects.  The file must be of the format generated
  3375.         by the Unix ctags command.
  3376.  
  3377.     -tabs n -- Set tab stops every n characters.
  3378.  
  3379.     -wrap, -nowrap -- Wrap long lines at the right edge of the window rather
  3380.         than continuing them past it.  (Continuous Wrap mode)
  3381.  
  3382.     -autowrap, -noautowrap -- Wrap long lines when the cursor reaches the right
  3383.         edge of the window by inserting newlines at word boundaries.  (Auto
  3384.         Newline Wrap mode)
  3385.  
  3386.     -autoindent, -noautoindent -- Maintain a running indent.
  3387.  
  3388.     -autosave, -noautosave -- Maintain a backup copy of the file being edited
  3389.         under the name ~filename  (on Unix) or _filename (on VMS).
  3390.  
  3391.     -lm languagemode -- Initial language mode used for editing
  3392.         succeeding files.
  3393.  
  3394.     -rows n -- Default height in characters for an editing window.
  3395.  
  3396.     -columns n -- Default width in characters for an editing window.
  3397.  
  3398.     -font font (or -fn font) -- Font for text being edited (Font for menus and
  3399.         dialogs can be set with -xrm "*fontList:font").
  3400.  
  3401.     -geometry geometry (or -g geometry) -- The initial size and/or location of
  3402.         editor windows.  The argument has the form:
  3403.  
  3404.             [<width>x<height>][+|-][<xoffset>[+|-]<yoffset>]
  3405.  
  3406.         where <width> and <height> are the desired width and height of the
  3407.         window, and <xoffset> and <yoffset> are the distance from the edge of
  3408.         the screen to the window, + for top or left, - for bottom or right.
  3409.         -geometry can be specified for individual files on the command line.
  3410.  
  3411.     -iconic, -noiconic -- Initial window state for succeeding files.
  3412.  
  3413.     -display [host]:server[.screen] -- The name of the X server to use.  host
  3414.         specifies the machine, server specifies the display server number, and
  3415.         screen specifies the screen number.  host or screen can be omitted and
  3416.         default to the local machine, and screen 0.
  3417.  
  3418.     -background color (or -bg color) -- Background color. (background color for
  3419.         text can be set separately with: -xrm "nedit*text.background: color").
  3420.  
  3421.     -foreground color (or -fg color) -- Foreground color.  (foreground color for
  3422.         text can be set separately with: -xrm "nedit*text.foreground: color").
  3423.  
  3424.     -xrm resourcestring -- Set the value of an X resource to override a default
  3425.         value (see CUSTOMIZATION).
  3426.  
  3427.     -svrname name -- When starting NEdit in server mode, name the server, such
  3428.         that it responds to requests only when nc is given a corresponding
  3429.         -svrname argument.  By naming servers, you can run several
  3430.         simultaneously, and direct files and commands specifically to any one.
  3431.  
  3432.     -import file -- loads an additional preferences file on top of the existing
  3433.         defaults saved in your .nedit file.  To incorporate macros, language
  3434.         modes, and highlight patterns and styles written by other users, run
  3435.         NEdit with -import <file>, then re-save your .nedit file with
  3436.         Preferences -> Save Defaults.
  3437.  
  3438.  
  3439. SERVER MODE AND NC
  3440.  
  3441. NEdit can be operated on its own, or as a two-part client/server application.
  3442. Client/server mode is useful for integrating NEdit with software development
  3443. environments, mailers, and other programs; or just as a quick way to open files
  3444. from the shell command line without starting a new NEdit session.
  3445.  
  3446. To run NEdit in server mode, type:
  3447.  
  3448. nedit -server
  3449.  
  3450. NEdit can also be started in server mode via the nc program when no servers are
  3451. available.
  3452.  
  3453. The nc (for NEdit Client) program, which is distributed along with nedit, sends
  3454. commands to an nedit server to open files, select lines, or execute editor
  3455. actions.  It accepts a limited set of the nedit command line options: -read,
  3456. -create, -line (or +n), -do, and a list of file names.  Listing a file on the
  3457. nc command line means, open it if it is not already open and bring the window
  3458. to the front.  -read and -create affect only newly opened files, but -line and
  3459. -do can also be used on files which are already open (See  NEDIT COMMAND LINE
  3460. for more information).
  3461.  
  3462. In typical Unix style, arguments affect the files which follow them on the
  3463. command line, for example:
  3464.  
  3465.     incorrect:   nc file.c -line 25
  3466.     correct:     nc -line 25 file.c
  3467.  
  3468. -read, -create, and -line affect all of the files which follow them on the
  3469. command line.  The -do macro is executed only once, on the next file on the
  3470. line.  -do without a file following it on the command line, executes the macro
  3471. on the first available window (presumably when you give a -do command without a
  3472. corresponding file or window, you intend it to do something independent of the
  3473. window in which it happens to execute).
  3474.  
  3475. nc also accepts one command line option of its own, -noask (or -ask), which
  3476. instructs it whether to automatically start a server if one is not available.
  3477. This is also settable via the X resource, nc.autoStart (See X RESOURCES above).
  3478.  
  3479. Sometimes it is useful to have more than one NEdit server running, for example
  3480. to keep mail and programming work separate, or more importantly for working
  3481. with tools like ClearCase which provide different views of the file system from
  3482. different shells.  The option, -svrname, to both nedit and nc, allow you to
  3483. start, and communicate with, separate named servers.  A named server responds
  3484. only to requests with the corresponding -svrname argument.
  3485.  
  3486. Communication between nc and nedit is through the X display.  So as long as X
  3487. windows is set up and working properly, nc will work properly as well.  nc
  3488. uses the DISPLAY environment variable, the machine name and your user name to
  3489. find the appropriate server, meaning, if you have several machines sharing a
  3490. common file system, nc will not be able to find a server that is running on a
  3491. machine with a different host name, even though it may be perfectly appropriate
  3492. for editing a given file.
  3493.  
  3494. The command which nc uses to start an nedit server is settable via the X
  3495. resource nc.serverCommand, by default, "nedit -server".
  3496.  
  3497.  
  3498. CRASH RECOVERY
  3499.  
  3500. If a system crash, network failure, X server crash, or program error should
  3501. happen while you are editing a file, you can easily recover most of your work.
  3502. NEdit maintains a backup file which it updates periodically (every 8 editing
  3503. operations or 30 characters typed under Unix, or 80 characters under VMS).
  3504. This file has the same name as the file that you are editing, but with the
  3505. character "~" (tilde) on Unix or "_" (underscore) on VMS prefixed to the name.
  3506. To recover a file after a crash, simply rename the file to remove the tilde
  3507. or underscore character, replacing the older version of the file.  Because
  3508. several of the Unix shells consider the tilde to be a special character, you
  3509. may have to prefix the character with a "\" (backslash) when you move or
  3510. delete an NEdit backup file.
  3511.  
  3512. Example, to recover the file called "help.c" type the command:
  3513.  
  3514.     mv \~help.c help.c
  3515.  
  3516. A minor caveat, is that if the file you were editing was in MS DOS format, the
  3517. backup file will be in Unix format, and you will need to open the backup file
  3518. in NEdit and change the file format back to MS DOS via the Save As... dialog
  3519. (or use the Unix unix2dos command outside of NEdit).
  3520.  
  3521.  
  3522. SOLUTIONS TO COMMON PROBLEMS
  3523.  
  3524. For a much more comprehensive list of common problems and solutions, see the
  3525. NEdit FAQ.  The latest version of the FAQ can always be found on the NEdit web
  3526. site at: http://nedit.org.
  3527.  
  3528. P: No files are shown in the "Files" list in the Open... dialog.
  3529. S: When you use the "Filter" field, include the file specification or a
  3530.    complete directory specification, including the trailing "/" on Unix.  (See
  3531.    Help in the Open... dialog).
  3532.  
  3533. P: Keyboard shortcuts for menu items don't work.
  3534. S: Be sure the Caps Lock and Num Lock keys are both unlocked.  In Motif
  3535.    programs, these keys prevent the menu accelerators from working.
  3536.  
  3537. P: Find Again and Replace Again don't continue in the same direction as the
  3538.    original Find or Replace.
  3539. S: Find Again and Replace Again don't use the direction of the original search.
  3540.    The Shift key controls the direction: Ctrl+G means forward, Shift+Ctrl+G
  3541.    means backward.
  3542.  
  3543. P: Preferences specified in the Preferences menu don't seem to get saved when I
  3544.    select Save Defaults.
  3545. S: NEdit has two kinds of preferences: 1) per-window preferences, in the
  3546.    Preferences menu, and 2) default settings for preferences in newly created
  3547.    windows, in the Default Settings sub-menu of the Preferences menu.  Per-
  3548.    window preferences are not saved by Save Defaults, only Default Settings.
  3549.  
  3550. P: Columns and indentation don't line up.
  3551. S: NEdit is using a proportional width font.  Set the font to a fixed style
  3552.    (see PREFERENCES).
  3553.  
  3554. P: NEdit performs poorly on very large files.
  3555. S: Turn off Incremental Backup.  With Incremental Backup on, NEdit periodically
  3556.    writes a full copy of the file to disk.
  3557.  
  3558. P: Commands added to the Shell Commands menu (Unix only) don't output anything
  3559.    until they are finished executing.
  3560. S: If the command output is directed to a dialog, or the input is from a
  3561.    selection, output is collected together and held until the command
  3562.    completes.  De-select both of the options and the output will be shown
  3563.    incrementally as the command executes.
  3564.  
  3565. P: Dialogs don't automatically get keyboard focus when they pop up.
  3566. S: Most X Window managers allow you to choose between two categories of
  3567.    keyboard focus models: pointer focus, and explicit focus.  Pointer focus
  3568.    means that as you move the mouse around the screen, the window under the
  3569.    mouse automatically gets the keyboard focus.  NEdit users who use this focus
  3570.    model should set "Popups Under Pointer" in the Default Settings sub menu of
  3571.    the preferences menu in NEdit.  Users with the explicit focus model, in some
  3572.    cases, may have problems with certain dialogs, such as Find and Replace.  In
  3573.    MWM this is caused by the mwm resource startupKeyFocus being set to False
  3574.    (generally a bad choice for explicit focus users).  NCDwm users should use
  3575.    the focus model "click" instead of "explicit", again, unless you have set it
  3576.    that way to correct specific problems, this is the appropriate setting for
  3577.    most explicit focus users.
  3578.  
  3579. P: The Delete key doesn't forward-delete.
  3580. S: See the X Resources section on nedit.remapDeleteKey.
  3581.  
  3582. P: NEdit crashes when I try to paste text in to a text field in a dialog (like
  3583.    Find or Replace) on my SunOS system.
  3584. S: On many SunOS systems, you have to set up an nls directory before various
  3585.    inter-client communication features of Motif will function properly.  There
  3586.    are instructions in ftp://ftp.nedit.org/pub/v5_0_2/individual/README.sun, as
  3587.    well as a tar file containing a complete nls directory in
  3588.    ftp://ftp.nedit.org/pub/v5_0_2/nls.tar.  This contains directions for
  3589.    setting up an nls directory, which is required by Motif for handling copy
  3590.    and paste to Motif text fields.
  3591.  
  3592.  
  3593. KNOWN BUGS
  3594.  
  3595. Below is the list of known bugs which affect NEdit.  The bugs your copy of
  3596. NEdit will exhibit depend on which system you are running and with which Motif
  3597. libraries it was built.
  3598.  
  3599. BUG: Operations between rectangular selections on overlapping lines do nothing.
  3600. WORKAROUND: None.  These operations are very complicated and you probably
  3601.      wouldn't get what you expected anyhow.
  3602.  
  3603. BUG: Cut and Paste menu items fail, or possibly crash, for very large
  3604.      (multi-megabyte) selections.
  3605. WORKAROUND: Use selection copy (middle mouse button click) for transferring
  3606.      larger quantities of data.  Cut and Paste save the copied text in server
  3607.      memory, which is usually limited.
  3608.  
  3609.  
  3610. REPORTING BUGS
  3611.  
  3612. The NEdit developers subscribe to both discuss@nedit.org and develop@nedit.org,
  3613. either of which may be used for reporting bugs.  If you're not sure, or you
  3614. think the report might be of interest to the general NEdit user community, send
  3615. the report to discuss@nedit.org.  If it's something obvious and boring, like we
  3616. misspelled "anemometer" in the on-line help, send it to develop.  If you don't
  3617. want to subscribe to these lists, please add a note to your mail about cc'ing
  3618. you on responses.
  3619.  
  3620.  
  3621. MAILING LISTS
  3622.  
  3623. There are two separate mailing lists for NEdit users, and one for developers.
  3624. Users may post to the developer mailing list to report bugs and communicate
  3625. with the developers.  Remember that NEdit is entirely a volunteer effort,
  3626. so please ask questions first to the discussion list, and do your share to
  3627. answer other users questions as well.  The lists are:
  3628.  
  3629.     discuss@nedit.org  -- General discussion, questions and answers among
  3630.                           NEdit users and developers.
  3631.  
  3632.     announce@nedit.org -- A low-volume mailing list for announcing new
  3633.                           versions.
  3634.  
  3635.     develop@nedit.org  -- Communication among and with NEdit developers.
  3636.  
  3637.             [... List subscription information goes here ...]
  3638.  
  3639.  
  3640.  
  3641. GNU GENERAL PUBLIC LICENSE
  3642.  
  3643. Version 2, June 1991
  3644.  
  3645. Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave,
  3646. Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute verbatim
  3647. copies of this license document, but changing it is not allowed.
  3648.  
  3649. Preamble
  3650.  
  3651. The licenses for most software are designed to take away your freedom to share
  3652. and change it. By contrast, the GNU General Public License is intended to
  3653. guarantee your freedom to share and change free software--to make sure the
  3654. software is free for all its users. This General Public License applies to most
  3655. of the Free Software Foundation's software and to any other program whose
  3656. authors commit to using it. (Some other Free Software Foundation software is
  3657. covered by the GNU Library General Public License instead.) You can apply it to
  3658. your programs, too.
  3659.  
  3660. When we speak of free software, we are referring to freedom, not price. Our
  3661. General Public Licenses are designed to make sure that you have the freedom to
  3662. distribute copies of free software (and charge for this service if you wish),
  3663. that you receive source code or can get it if you want it, that you can change
  3664. the software or use pieces of it in new free programs; and that you know you
  3665. can do these things.
  3666.  
  3667. To protect your rights, we need to make restrictions that forbid anyone to deny
  3668. you these rights or to ask you to surrender the rights. These restrictions
  3669. translate to certain responsibilities for you if you distribute copies of the
  3670. software, or if you modify it.
  3671.  
  3672. For example, if you distribute copies of such a program, whether gratis or for
  3673. a fee, you must give the recipients all the rights that you have. You must make
  3674. sure that they, too, receive or can get the source code. And you must show them
  3675. these terms so they know their rights.
  3676.  
  3677. We protect your rights with two steps: (1) copyright the software, and (2)
  3678. offer you this license which gives you legal permission to copy, distribute
  3679. and/or modify the software.
  3680.  
  3681. Also, for each author's protection and ours, we want to make certain that
  3682. everyone understands that there is no warranty for this free software. If the
  3683. software is modified by someone else and passed on, we want its recipients to
  3684. know that what they have is not the original, so that any problems introduced
  3685. by others will not reflect on the original authors' reputations.
  3686.  
  3687. Finally, any free program is threatened constantly by software patents. We wish
  3688. to avoid the danger that redistributors of a free program will individually
  3689. obtain patent licenses, in effect making the program proprietary. To prevent
  3690. this, we have made it clear that any patent must be licensed for everyone's
  3691. free use or not licensed at all.
  3692.  
  3693. The precise terms and conditions for copying, distribution and modification
  3694. follow.
  3695.  
  3696. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND
  3697. MODIFICATION
  3698.  
  3699. 0. This License applies to any program or other work which contains a notice
  3700. placed by the copyright holder saying it may be distributed under the terms of
  3701. this General Public License. The "Program", below, refers to any such program
  3702. or work, and a "work based on the Program" means either the Program or any
  3703. derivative work under copyright law: that is to say, a work containing the
  3704. Program or a portion of it, either verbatim or with modifications and/or
  3705. translated into another language. (Hereinafter, translation is included without
  3706. limitation in the term "modification".) Each licensee is addressed as "you".
  3707.  
  3708. Activities other than copying, distribution and modification are not covered by
  3709. this License; they are outside its scope. The act of running the Program is not
  3710. restricted, and the output from the Program is covered only if its contents
  3711. constitute a work based on the Program (independent of having been made by
  3712. running the Program). Whether that is true depends on what the Program does.
  3713.  
  3714. 1. You may copy and distribute verbatim copies of the Program's source code as
  3715. you receive it, in any medium, provided that you conspicuously and
  3716. appropriately publish on each copy an appropriate copyright notice and
  3717. disclaimer of warranty; keep intact all the notices that refer to this License
  3718. and to the absence of any warranty; and give any other recipients of the
  3719. Program a copy of this License along with the Program.
  3720.  
  3721. You may charge a fee for the physical act of transferring a copy, and you may
  3722. at your option offer warranty protection in exchange for a fee.
  3723.  
  3724. 2. You may modify your copy or copies of the Program or any portion of it, thus
  3725. forming a work based on the Program, and copy and distribute such modifications
  3726. or work under the terms of Section 1 above, provided that you also meet all of
  3727. these conditions:
  3728.  
  3729. a) You must cause the modified files to carry prominent notices stating that
  3730. you changed the files and the date of any change.
  3731.  
  3732. b) You must cause any work that you distribute or publish, that in whole or in
  3733. part contains or is derived from the Program or any part thereof, to be
  3734. licensed as a whole at no charge to all third parties under the terms of this
  3735. License.
  3736.  
  3737. c) If the modified program normally reads commands interactively when run, you
  3738. must cause it, when started running for such interactive use in the most
  3739. ordinary way, to print or display an announcement including an appropriate
  3740. copyright notice and a notice that there is no warranty (or else, saying that
  3741. you provide a warranty) and that users may redistribute the program under these
  3742. conditions, and telling the user how to view a copy of this License.
  3743. (Exception: if the Program itself is interactive but does not normally print
  3744. such an announcement, your work based on the Program is not required to print
  3745. an announcement.)
  3746.  
  3747. These requirements apply to the modified work as a whole. If identifiable
  3748. sections of that work are not derived from the Program, and can be reasonably
  3749. considered independent and separate works in themselves, then this License, and
  3750. its terms, do not apply to those sections when you distribute them as separate
  3751. works. But when you distribute the same sections as part of a whole which is a
  3752. work based on the Program, the distribution of the whole must be on the terms
  3753. of this License, whose permissions for other licensees extend to the entire
  3754. whole, and thus to each and every part regardless of who wrote it.
  3755.  
  3756. Thus, it is not the intent of this section to claim rights or contest your
  3757. rights to work written entirely by you; rather, the intent is to exercise the
  3758. right to control the distribution of derivative or collective works based on
  3759. the Program.
  3760.  
  3761. In addition, mere aggregation of another work not based on the Program with the
  3762. Program (or with a work based on the Program) on a volume of a storage or
  3763. distribution medium does not bring the other work under the scope of this
  3764. License.
  3765.  
  3766. 3. You may copy and distribute the Program (or a work based on it, under
  3767. Section 2) in object code or executable form under the terms of Sections 1 and
  3768. 2 above provided that you also do one of the following:
  3769.  
  3770. a) Accompany it with the complete corresponding machine-readable source code,
  3771. which must be distributed under the terms of Sections 1 and 2 above on a medium
  3772. customarily used for software interchange; or,
  3773.  
  3774. b) Accompany it with a written offer, valid for at least three years, to give
  3775. any third party, for a charge no more than your cost of physically performing
  3776. source distribution, a complete machine-readable copy of the corresponding
  3777. source code, to be distributed under the terms of Sections 1 and 2 above on a
  3778. medium customarily used for software interchange; or,
  3779.  
  3780. c) Accompany it with the information you received as to the offer to distribute
  3781. corresponding source code. (This alternative is allowed only for noncommercial
  3782. distribution and only if you received the program in object code or executable
  3783. form with such an offer, in accord with Subsection b above.)
  3784.  
  3785. The source code for a work means the preferred form of the work for making
  3786. modifications to it. For an executable work, complete source code means all the
  3787. source code for all modules it contains, plus any associated interface
  3788. definition files, plus the scripts used to control compilation and installation
  3789. of the executable. However, as a special exception, the source code distributed
  3790. need not include anything that is normally distributed (in either source or
  3791. binary form) with the major components (compiler, kernel, and so on) of the
  3792. operating system on which the executable runs, unless that component itself
  3793. accompanies the executable.
  3794.  
  3795. If distribution of executable or object code is made by offering access to copy
  3796. from a designated place, then offering equivalent access to copy the source
  3797. code from the same place counts as distribution of the source code, even though
  3798. third parties are not compelled to copy the source along with the object code.
  3799.  
  3800. 4. You may not copy, modify, sublicense, or distribute the Program except as
  3801. expressly provided under this License. Any attempt otherwise to copy, modify,
  3802. sublicense or distribute the Program is void, and will automatically terminate
  3803. your rights under this License. However, parties who have received copies, or
  3804. rights, from you under this License will not have their licenses terminated so
  3805. long as such parties remain in full compliance.
  3806.  
  3807. 5. You are not required to accept this License, since you have not signed it.
  3808. However, nothing else grants you permission to modify or distribute the Program
  3809. or its derivative works. These actions are prohibited by law if you do not
  3810. accept this License. Therefore, by modifying or distributing the Program (or
  3811. any work based on the Program), you indicate your acceptance of this License to
  3812. do so, and all its terms and conditions for copying, distributing or modifying
  3813. the Program or works based on it.
  3814.  
  3815. 6. Each time you redistribute the Program (or any work based on the Program),
  3816. the recipient automatically receives a license from the original licensor to
  3817. copy, distribute or modify the Program subject to these terms and conditions.
  3818. You may not impose any further restrictions on the recipients' exercise of the
  3819. rights granted herein. You are not responsible for enforcing compliance by
  3820. third parties to this License.
  3821.  
  3822. 7. If, as a consequence of a court judgment or allegation of patent
  3823. infringement or for any other reason (not limited to patent issues), conditions
  3824. are imposed on you (whether by court order, agreement or otherwise) that
  3825. contradict the conditions of this License, they do not excuse you from the
  3826. conditions of this License. If you cannot distribute so as to satisfy
  3827. simultaneously your obligations under this License and any other pertinent
  3828. obligations, then as a consequence you may not distribute the Program at all.
  3829. For example, if a patent license would not permit royalty-free redistribution
  3830. of the Program by all those who receive copies directly or indirectly through
  3831. you, then the only way you could satisfy both it and this License would be to
  3832. refrain entirely from distribution of the Program.
  3833.  
  3834. If any portion of this section is held invalid or unenforceable under any
  3835. particular circumstance, the balance of the section is intended to apply and
  3836. the section as a whole is intended to apply in other circumstances.
  3837.  
  3838. It is not the purpose of this section to induce you to infringe any patents or
  3839. other property right claims or to contest validity of any such claims; this
  3840. section has the sole purpose of protecting the integrity of the free software
  3841. distribution system, which is implemented by public license practices. Many
  3842. people have made generous contributions to the wide range of software
  3843. distributed through that system in reliance on consistent application of that
  3844. system; it is up to the author/donor to decide if he or she is willing to
  3845. distribute software through any other system and a licensee cannot impose that
  3846. choice.
  3847.  
  3848. This section is intended to make thoroughly clear what is believed to be a
  3849. consequence of the rest of this License.
  3850.  
  3851. 8. If the distribution and/or use of the Program is restricted in certain
  3852. countries either by patents or by copyrighted interfaces, the original
  3853. copyright holder who places the Program under this License may add an explicit
  3854. geographical distribution limitation excluding those countries, so that
  3855. distribution is permitted only in or among countries not thus excluded. In such
  3856. case, this License incorporates the limitation as if written in the body of
  3857. this License.
  3858.  
  3859. 9. The Free Software Foundation may publish revised and/or new versions of the
  3860. General Public License from time to time. Such new versions will be similar in
  3861. spirit to the present version, but may differ in detail to address new problems
  3862. or concerns.
  3863.  
  3864. Each version is given a distinguishing version number. If the Program specifies
  3865. a version number of this License which applies to it and "any later version",
  3866. you have the option of following the terms and conditions either of that
  3867. version or of any later version published by the Free Software Foundation. If
  3868. the Program does not specify a version number of this License, you may choose
  3869. any version ever published by the Free Software Foundation.
  3870.  
  3871. 10. If you wish to incorporate parts of the Program into other free programs
  3872. whose distribution conditions are different, write to the author to ask for
  3873. permission. For software which is copyrighted by the Free Software Foundation,
  3874. write to the Free Software Foundation; we sometimes make exceptions for this.
  3875. Our decision will be guided by the two goals of preserving the free status of
  3876. all derivatives of our free software and of promoting the sharing and reuse of
  3877. software generally.
  3878.  
  3879. NO WARRANTY
  3880.  
  3881. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
  3882. THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
  3883. STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
  3884. PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
  3885. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  3886. FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
  3887. PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU
  3888. ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  3889.  
  3890. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
  3891. ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
  3892. PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  3893. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
  3894. INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
  3895. BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  3896. FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
  3897. OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  3898.  
  3899. END OF TERMS AND CONDITIONS
  3900.